zorro-del-caribe / bucanero

web framework for nodejs based on koajs and conventions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bucanero

CircleCI

Web framework for nodejs based on koa.js, using convention over configuration and inspired by actionHero

install

npm install bucanero

usage

const bucanero = require('bucanero');

const app = bucanero(options={});

app
    .start()
    .then(app => {
      // app listening
      return app.stop();
    })
    .then(()=>{
      // app has been stopped
    });

structures

initializers

config

controllers

examples

  • web application

  • api

About

web framework for nodejs based on koajs and conventions

License:MIT License


Languages

Language:JavaScript 100.0%