8000 GitHub - slatesuraj/node-oauth2-server: This project is the complete implementation of oAuth2 server in nodejs.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

This project is the complete implementation of oAuth2 server in nodejs.

License

Notifications You must be signed in to change notification settings

slatesuraj/node-oauth2-server

Repository files navigation

Node oAUth2 Server

This is a oAuth2 server implementation in nodejs using Sequalise ORM for postgres database.

Setup

Install Postgres and create database

create database oauthdb;
CREATE USER oauth WITH PASSWORD '12345678oauth' ;
grant all privileges on database oauthdb to oauth ;

Install npm packages

npm install

Running Server

npm start

Server will be available on port http://localhost:3000. The web framework is provided via express package.

Note: There is a file called ".env". You can modify that file according to the need.

About

This project is the complete implementation of oAuth2 server in nodejs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0