Node.js Serving Dynamic Content with Node.js and Pug In this tutorial we will be working with a templating engine named Pug to serve up some dynamic content. Dynamic content is content that is generated at the time you request the page.
Node.js Serving Static Content with Node.js and Express This post is part of a Node.js series and is a continuation of my last post, Writing a Simple Server with Node.js and Express. Now that we know how to start
Node.js Writing a Simple Server with Node.js and Express We need Express to start up an HTTP server and listen for connections to a port, which we will define. To do that we will use `app.listen()` to which we will pass two parameters.
Node.js Setting up a Node.js Project with NPM The very first thing we want to do in any new Node.js project is to initialize the project with NPM. To do that, open a command prompt at the directory you just created for your project and run npm init.
Node.js Getting started with Node.js In this Node.js tutorial series we are going to learn how to write our first server-side Node.js app so we can serve up static and dynamic web pages using JavaScript.