Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

10
  • Welcome to the community. I'm afraid your statement saying that Node.js has no support sessions is semi-false - express.js has sessions for example, which is commonly used. If by natively you mean part of the standard library - then you might be right there, but it doesn't matter, since you need to use at least some libraries or frameworks either way.. Commented Apr 2, 2023 at 10:29
  • P.S. have you looked into JWS? It might solve some of your issues. Commented Apr 2, 2023 at 10:29
  • Node.js is not a language, but a runtime. It uses JavaScript as language. Commented Apr 2, 2023 at 12:00
  • Please explain what problem are you trying to solve. Commented Apr 2, 2023 at 12:48
  • @SirMuffington Express is a framework for NodeJS, which needs an additional first-party library to be installed. There are many other web frameworks for Node.js, other than Express, that only have access to a session with the help of third-party libraries, sometimes leading to brittle implementations. Commented Apr 2, 2023 at 13:57