You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
792 B
43 lines
792 B
3 years ago
|
Création de la base de donnée et de l'utilisateur dédié :
|
||
|
database.sql
|
||
|
|
||
|
Création de la table et de son contenu :
|
||
|
database2.sql
|
||
|
|
||
|
Installer les packages :
|
||
|
npm install
|
||
|
|
||
|
Lancer le serveur NodeJS :
|
||
|
nodemon api.js
|
||
|
|
||
|
--------------------------------------
|
||
|
|
||
|
Différents routes :
|
||
|
|
||
|
Afficher la liste des utilisateurs :
|
||
|
http://localhost:8080/users - GET
|
||
|
|
||
|
--------------------------------------
|
||
|
|
||
|
Afficher un utilisateur :
|
||
|
http://localhost:8080/user/2 - GET
|
||
|
|
||
|
--------------------------------------
|
||
|
|
||
|
Supprimer un utilisateur :
|
||
|
http://localhost:8080/user/5 - DELETE
|
||
|
|
||
|
--------------------------------------
|
||
|
|
||
|
Insérer un utilisateur :
|
||
|
http://localhost:8080/user - POST
|
||
|
|
||
|
body :
|
||
|
{
|
||
|
"nom": "Allande",
|
||
|
"prenom": "Alain",
|
||
|
"email": "allande.alain@gmail.com"
|
||
|
}
|
||
|
|
||
|
--------------------------------------
|