Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

infenlghwef

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

infenlghwef

  • 1.0.0
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

数据库表

用户表 users

| 字段名 | 类型 | 是否必填 | 备注 | | userid | uuid | 主键自动生成 | 用户id | | username | string | 是 | 登录手机号 | | password | string | 是 | 用户密码,需要加密 | | createdAt | Date | 自动生成 | 创建时间 | | updatedAt | Date | 自动生成 | 修改时间 |

前台页面接口

登录

接口地址:/login

请求方法:Post

参数:

{
   "username":"",
   "password":"",
   "code":""
}

响应:

{
   "code":200,
   "success":true,
   "data":{
      "username":"",
      "userid":"",
      "token":""
   }
}

注册

接口地址:/register

请求方式:Post

参数:

{
   "username":"",
   "password":"",
   "imgCode":"",
   "code":""
}

响应:

{
   "code":200,
   "success":true,
   "data":{}
}

FAQs

Package last updated on 25 Mar 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc