Blog

Archive for the Node.js Category


Basic Examples of Asynchronous Function Using Node.js
Posted on September 22, 2020 in JavaScript, Node.js by Matt Jennings

The console.log(number3) code, which outputs the text of the number3.txt file below that is in the same directory as the …

Read more


How to Review GitHub Pull Requests When Building a Node.js App
Posted on October 21, 2019 in Git, GitHub, Node.js by Matt Jennings

In a GitHub repo checkout the Pull Request (PR) branch name, like cool-feature-branch.
In your Terminal, to fetch all remote branches …

Read more


Express Code Used for Form Submissions
Posted on August 21, 2019 in Expresss, Node.js by Matt Jennings

When NOT using body-parser the two lines of code must be used for form submissions:

// Sets up the …

Read more


Node.js module.exports and require Examples
Posted on July 22, 2019 in Node.js by Matt Jennings

module.exports = {
punk: ‘Sex Pistols’,
rap: ‘Public Enemy’,
classic: ‘Rolling …

Read more


URL Parameters in Express.js
Posted on August 22, 2016 in Node.js by Matt Jennings

// Route for each poll
// and “:poll_id” is a URL parameter where a value passed the to URL,
// like …

Read more

To Top ↑