Closed benoit-bremaud closed 4 months ago
Description
Initialize the project with npm init -y
to create the package.json
file and set up the initial branches main
, development
, and production
.
Steps
npm init -y
.main
branch.development
branch.production
branch.Criteria for Success
package.json
file is created.main
, development
, and production
branches are created and pushed to the remote repository.Description Install Express.js in the Node.js project and set up a basic server to verify the installation.
Steps
npm install express
.app.js
.Criteria for Success
package.json
.http://localhost:3000
.
Description : Initialize a new Node.js project, install Express.js, and set up a basic Express server.
Steps :
npm init -y
npm install express
app.js
and set up a basic serverCriteria for Success : The server runs on http://localhost:5000 and displays "Hello World" when accessing the root route.