rinahafizhah / express-auth-learn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Express Auth Example

Setup Global

npm i -g sequelize-cli
# or
yarn global add sequelize-cli

Setup Database

sequelize db:create

Setup App

  1. Install local dependencies:
    npm i
    # or
    yarn
  2. Edit .env

Starting App

Without migrations

npm start
# or
yarn start

Without migrations

sequelize db:migrate

npm start
# or
yarn start

Access API server by opening http://localhost:8000

API Endpoints /api

/users

Endpoint HTTP Description Body
/users/ GET Get all users -
/users/:userId GET Get user by id -
/users/:userId PATCH Update user by id name, age
/users/:userId DELETE DELETE user by id

/auth

Endpoint HTTP Description Body
/signup/ POST Register new account name, age, email, password
/signin/ POST Login registered account email, password

About


Languages

Language:JavaScript 100.0%