bills

0.0.5 • Public • Published

Bills

Installation

$ npm install --save bills 

api.js

import fs from 'fs';
import express from 'express';
import bills from 'bills';
 
const app = express();
const router = JSON.parse(fs.readFileSync(__dirname + '/router.json').toString());
 
bills(app, router);
 
app.listen(3000)

router.json

"configure":{
    "connect": "mongodb://127.0.0.1:27017/your_database",
    "authenticate": true,
    "acl": {
      "default": "Visitor",
      "rol":["Admin", "Visitor"]
    },
    "jwt":{
      "secret": "my_word_secret",
      "day": "days_expire"
    }
  },
  "routes":[
    {
      "route": "TEST",
      "controller":{
        "name": "TEST",
        "method": [
          {
            "name": "GET",
            "feature": "allTest",
            "auth": true,
            "acl": ["Admin", "Visitor"]
          },
          {
            "name": "POST",
            "feature": "createTest",
            "auth": false,
            "acl": ["Admin"]
          },
          {
            "name": "PUT",
            "feature": "updateTest",
            "auth": false,
            "acl": ["Admin"]
          },
          {
            "name": "DELETE",
            "feature": "deleteTest",
            "auth": true,
            "acl": ["Admin"]
          }
        ]
      }
    }

Collection user: internal settings

user : {
  name  : String,
  user  : { type: String, required: true },
  pass  : String,
  email : Array,
  access: { type: Boolean, default: false },
  verify: { type: Boolean, default: false },
  rol   : { type: Array, enum: data.rol, default: data.default },
  date  : { type:Date, default: new Date() }
}

Accessing the user collection

let user = req.db.user;

Accessing user when authenticated.

if router.json has the attribute Authenticated = true

let user_id = req._user;

Project structure

├── api/
    ├── controllers/
    └── router.json

Readme

Keywords

Package Sidebar

Install

npm i bills

Weekly Downloads

1

Version

0.0.5

License

MIT

Last publish

Collaborators

  • juandav