Skip to content

Latest commit

 

History

History
64 lines (47 loc) · 1.33 KB

README.md

File metadata and controls

64 lines (47 loc) · 1.33 KB

Api Base for NodeJS

The goal of this library is to provide a simple approach to develop complex APIs in declarative way. Fill your endpoints.js file, add custom models and controllers and you are set! The library will automatically generate Swagger documentation at the /api-docs endpoint. Enjoy!

Installation

Run npm install inside api_base_js folder
Run npm install inside myapp folder
After that, run node myapp/index to have the sample application running

Usage

const options = {
  //controllers folder:
  controllers : './handlers',
  //middleware folder:
  middleware : './middleware',
  //endpoints file
  endpoints : './endpoints.js'
};

const api_base = require('api_base_js')(app, options);

the endpoints.js file :

module.exports = [
  {
    path: '/registrations',
    method: 'post',
    requestEntity: 'onboarding',
    middleWares : ['onboardingMiddleware'],
    handler: 'registrations.js',
    via: '/v0.1/me/registrations',
    response: 'Test',
    autovalidate : false
  },
  {
    path: '/test',
    method: 'get',
    handler: 'test.js',
    via: '/v0.1/me/test',
    autovalidate : true
  }
];

##Development These commands will make it easier to develop the library and test it simultaneously with myapp.

Run npm link in api_base_js folder
cd myapp
npm link api_base_js