-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotas-node-mongo.juan
112 lines (68 loc) · 1.66 KB
/
notas-node-mongo.juan
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
EJECUTAR PROYECTO _ npm start
----
LIBRERIA
* nodemon --- recargar servidor
dependencia de desarrollo
arranca desde script de packaga.json
****************************************
* MÉTODOS HTTP
GET
POST
PUT
DELETE
* CODIGOS DE RESPUESTA
1XX INFORMATIVO
2xx CORRECTO
3xx RESPUESTA REDIRECCION
4xx ERROR DEL CLIENTE 404, ETC
5xx ERROR DEL SERVIDOR
****************************************
MONGO
$ sudo service mongod start
$ mongod
$ mongo
>
****************************
DRIVER MONGO PARA NODE
https://mongodb.github.io/node-mongodb-native/
npm install mongodb --save
--------------
POSTMAN
--------------
body: x-www-form-urlencoded
key ----------- value sin comillas
---------------------------------------
GET
http://localhost:2222/l/libros
{
"libros": [
{
"_id": "5a23058bde7be31ba0dac386",
"fechaMod": "2017-12-01T23:00:00.000Z",
"fecha": "2017-12-02T19:56:59.000Z",
"texto": "dddddddddd\ndddddddddd\nddddddddd\nddddddddd",
"titulo": "En un lugar de la Manch",
"__v": 0
}
]
}
GET Y PUT Y DELETE
http://localhost/l/libros/libro/id
POST
http://localhost/l/libro
AUTENTICACION
-------------
BASADA EN TOKENS
JSON WEB TOKENS
***********************
ALMACENADO EN CLIENTE
LOCALSTORAGE
TRES PARTES:
- CABECERA
- DATOS QUE SE ENVIAN
sub: un identificador
name
- VERIFICACION
codifica en el servicdor
secret esta en el servidor
libreria : JWT-SIMPLE