https://github.com/kevin-doolaeghe/nodejs_rest_api
API REST sous Node.JS
https://github.com/kevin-doolaeghe/nodejs_rest_api
learning-by-doing nodejs rest-api
Last synced: 2 months ago
JSON representation
API REST sous Node.JS
- Host: GitHub
- URL: https://github.com/kevin-doolaeghe/nodejs_rest_api
- Owner: kevin-doolaeghe
- Created: 2021-05-03T16:12:16.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-04T08:58:24.000Z (about 5 years ago)
- Last Synced: 2025-05-31T11:37:53.852Z (about 1 year ago)
- Topics: learning-by-doing, nodejs, rest-api
- Language: JavaScript
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Node JS - REST API
## Auteur
### Kevin Doolaeghe
## Installation
Installation des dépendances utiles pour Node JS :
```
sudo apt install nodejs npm
sudo npm install express jshint joi
sudo npm install -g nodemon
```
## Démarrage
Démarrage classique avec `node` :
```
node app.js
```
Prise en compte des modifications avec `nodemon` :
```
nodemon app.js
```