Skip to content

dunghenry/ci_cd_node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nodejs + CI + CD

Setup

1,

npm init -y

2,

npm i express morgan cors helmet dotenv body-parser

3,

npm i -D nodemon colors mocha supertest

4, Add script

"start": "node src/index.js",
"dev": "nodemon --inspect src/index.js",
"test": "mocha ./__test__/* --exit"

Start server

npm run dev

Test

npm test