Skip to content

Generic library for Viron

License

Notifications You must be signed in to change notification settings

cam-inc/node-vironlib

Repository files navigation

node-vironlib

Generic library for Viron

npm MIT License npm node

言語別 README

Description

node-vironlib is a helper library that makes it easy to implement functions that would normally be needed with Viron API Server.

Features

QuickStart

Install

$ npm install node-vironlib

Usage

const app = require('express')();
const VironLib = require('node-vironlib');
const vironlib = new VironLib({...}); // @see https://cam-inc.github.io/viron-doc/docs/adv_vironlib.html

// middleware
app.use(vironlib.swagger.middlware());
app.use(vironlib.auditLog.middleware());
app.use(vironlib.auth.google.middleware());
app.use(vironlib.adminRole.middleware());
app.use(vironlib.bodyCompletion.middleware());

// controller
app.post(vironlib.auth.controller.signIn);
app.post(vironlib.auth.controller.signOut);
app.get(vironlib.swagger.controller.show);
...

Test

npm test

Migration

Copyright

CA Mobile, Inc. All rights reserved.

LICENSE

@see : LICENSE