56e68d5adf671248d7a60671f54eb910d86eaaee
setup your project
- Create NPM project, hit enter till done
npm init
- Install express
npm install express
- Install nodemon (optional)
npm install --save-dev nodemon
- Edit package.json
In
"scripts"create an entry for the main program and nodemon
"start": "node index.js",
"dev": "nodemon index.js"
replace index.js with the name of your express server file.
Run with either
npm start
or for nodemon.
npm run dev
Description
Publishing this so my friends can look at how its done last minute...
6 MiB
0 Stars
1 Watchers
0 Forks
Languages
CSS
39.6%
HTML
32.1%
JavaScript
28.3%