pirateminds / respi

Rest api node.js automation tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

respi

Express.js api creation automation tool
import app from 'respi';
import actions from './actions';
import myMiddleware from 'anMiddleware';

// express middle wares before all
// you can handle private public actions globally
app.use(myMiddleware);

// all arguments are optional
app.init({
    port: 9000,
    https: true,
    corsDomains: ['localhost:9000', 'somedomain.com']
    actions
});

export default app;

Copyright (c) 2017 pirateminds.com. Licensed with The MIT License (MIT)

About

Rest api node.js automation tool

License:MIT License


Languages

Language:JavaScript 100.0%