https://github.com/sowinskibraeden/comp1537-assignment5
Publishing this so my friends can look at how its done last minute...
https://github.com/sowinskibraeden/comp1537-assignment5
Last synced: 2 months ago
JSON representation
Publishing this so my friends can look at how its done last minute...
- Host: GitHub
- URL: https://github.com/sowinskibraeden/comp1537-assignment5
- Owner: SowinskiBraeden
- Created: 2025-03-19T05:45:37.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-19T05:50:06.000Z (2 months ago)
- Last Synced: 2025-03-19T06:33:19.945Z (2 months ago)
- Language: CSS
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# setup your project
1. Create NPM project, hit enter till done
```bash
npm init
```2. Install express
```bash
npm install express
```3. Install nodemon (optional)
```
npm install --save-dev nodemon
```4. Edit package.json
In `"scripts"` create an entry for the main program and nodemon
```json
"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
```