Bootstrapping a Sample Node.js Project
Learn how to create a simple Node.js application which can then be deployed using CodePipeline.
We'll cover the following...
Introduction
We can develop our applications using a variety of programming languages, one of which is Node.js
. We will be looking at how to set up a Node.js
project and prepare it for deployment using AWS CodePipeline. Express is a Node.js
framework that simplifies the development of Node.js and has many built-in features. It can be installed using the node package manager npm using the command:
npm install express-generator -g
In this command, -g
signifies the global flag.
A simple Node.js
application can be generated via the command line using the express <appName>
command where appName
is the application name.
We can follow the steps below to create a Node.js
application called sample_app
:
- Use the command below to bootstrap the application.