/app_nodejs

Sample NodeJS (Express) App with Docker and Jenkins

Primary LanguageHTML

app_nodejs

Initialization

npm init -y
npm install express
npm install -D nodemon
nano package.json # modify start script to run 'nodemon index.js'
npm run start

Development

nvm install
nvm use
npm i
npm start