vicdata4 / seed-server

Node API which provides token authentication and an API endpoint to seed-application. Express, Mongoose, jsonwebtoken

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

server

Requirements

  • node v10.15.3
  • npm v6.4.1

Dependencies

  • node-express ^4.17.1
  • mongoose ^5.6.9

Run server

git clone https://github.com/vicdata4/node_server.git

npm install

node server.js

Data Base config:

Create config.js file in / directory and include your config params.

Example

const path = require('path');

module.exports = {
    url: 'db-adress',
    secret: 'auth-private-key',
    prefix: 'prefix-key',
    publicPath: 'public-build-path',
    origin: 'origin-adress'
}

About

Node API which provides token authentication and an API endpoint to seed-application. Express, Mongoose, jsonwebtoken


Languages

Language:JavaScript 100.0%