Node.js 如何处理身份验证/用户系统?
我来自Django的框架,它内置了“用户”系统。它负责所有的注册、密码、登录等。Node.js
有这个吗?
I come from Django's framework, and it has built in "user" system. It takes care of all the registrations, passwords, logins, etc.
Does Node.js have this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可能想要浏览节点包管理器 (npm) 注册表上的包用于 NodeJS 扩展模块,可以组合使用这些模块来对用户进行身份验证、与外部用户管理系统通信等。例如, node-http-digest 扩展 用于 HTTP 摘要身份验证。
You may want to browse through the packages on the node package manager (npm) registry for NodeJS extension modules that can be combined to enable you to authenticate users, talk to external user management systems, etc. For example, the node-http-digest extension for HTTP digest authentication.
我查看了文档,发现没有用户管理系统。
node.js 是一个 JavaScript 服务器,而 django 是一个具有内置套接字实用程序的 MVC。
I reviewed the documentation and found no user management system.
node.js is a JavaScript server where-as django is an MVC with built-in socket utilities.
尝试查看 connect 和 express Node.js 模块。即express(构建在connect之上)可以与Django的功能进行“比较”。
Try to look at connect and express node.js modules. Namely express (which is built on top of connect) can be "compared" with Django's funcionality.
我知道这是一个旧线程,但想分享此链接,希望它可以帮助遇到此问题的其他人。
检查干墙; Node.js 的网站和用户系统
http://jedireza.github.io/drywall/
I know this is an old thread but wanted to share this link in hopes it can help others who come across this question.
Checkout Drywall; A website and users system for Node.js
http://jedireza.github.io/drywall/