An open API service indexing awesome lists of open source software.

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

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
```