文件名称:express-server-jwt:处理JWT身份验证的简单快递服务器
文件大小:37KB
文件格式:ZIP
更新时间:2024-02-25 22:29:42
jwt express node authentication server
Express服务器JWT 具有JWT身份验证的简单服务器,具有创建新用户和对现有用户进行身份验证的能力。 终点: / signin-POST(电子邮件,密码) / signup-POST(电子邮件,密码) /用户-GET(受保护) 开始使用: 下载仓库并安装所有依赖项: git clone https://github.com/alan2207/express-server-jwt cd express-server-jwt npm install 配置服务器: touch config.js # the configuration should look like this:
【文件预览】:
express-server-jwt-master
----models()
--------User.js(1KB)
----package.json(612B)
----server.js(516B)
----package-lock.json(156KB)
----controllers()
--------authentication.js(1024B)
----.eslintrc.js(431B)
----.gitignore(24B)
----README.md(651B)
----services()
--------passport.js(1KB)
----router.js(641B)
----.editorconfig(208B)