UNPKG

apinode

Version:

An API server that can greatly reduce the work needed to implment API services. It can also cooperate with other API node to make it a mesh of services.

11 lines (10 loc) 218 B
/*! * apinode * authors: Ben Lue * Copyright(c) 2015~2016 Gocharm Inc. */ var serverBase = require('./serverBase.js'); module.exports = function(options) { serverBase.init(options); return serverBase.intake; };