middleware_encriptar
v1.0.1
Published
Para usar con un servidor que proteja el contenido de un archivo en el filesystem (tener en cuenta que debe tener instalado el paquete body-parser para utilizar alguna de las funciones que se encuentran aqui (POST). Además, agregar esta linea al server.js
Downloads
2
Readme
Module to be used along with a server that protects the content of a certain file in the filesystem. Beware of installing the module "bodyparser" (it's needed in order to execute certain parts of the code)
The server also needs to add this line:
app.use(bodyp.urlencoded({extended : false}));
So the POST functions (like register or login) can retrieve information sent to them by the client. (req.body.username and req.body.password).