2025-03-18 22:49:57 -07:00
2025-03-18 22:46:53 -07:00
2025-03-18 22:46:53 -07:00
2025-03-18 22:46:53 -07:00
2025-03-18 22:46:53 -07:00
2025-03-18 22:46:53 -07:00
2025-03-18 22:46:53 -07:00
2025-03-18 22:46:53 -07:00
2025-03-18 22:49:57 -07:00

setup your project

  1. Create NPM project, hit enter till done
npm init
  1. Install express
npm install express
  1. Install nodemon (optional)
npm install --save-dev nodemon
  1. 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
S
Description
Publishing this so my friends can look at how its done last minute...
Readme
6 MiB
0 Stars 1 Watchers 0 Forks
Languages
CSS 39.6%
HTML 32.1%
JavaScript 28.3%