Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 2, 2020 06:41
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save parzibyte/57569f9f238ef0dcba538a958349367b to your computer and use it in GitHub Desktop.
app.get("/guardar_en_sesión", (req, res) => {
req.session.nombre = "Luis";
req.session.edad = 23;
req.session.web = "https://parzibyte.me";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment