ishikawa-pro / node-vironlib

Generic library for Viron

Home Page:https://github.com/cam-inc/viron/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Copyright

CA Mobile, Inc. All rights reserved.

LICENSE

@see : LICENSE

About

Generic library for Viron

https://github.com/cam-inc/viron/

License:MIT License


Languages

Language:JavaScript 100.0%