core
Small modular, effective app framework.
There be 🐲 here! The API and functionality are being cemented, anything before a 1.0.0 release is subject to change.
![Coverage Status](https://coveralls.io/repos/github/allegiant-js/core/badge.svg?branch=master)
Installation
npm install @allegiant/core --save
Usage
const App = require('@allegiant/core');
var server = App.create('http://localhost:7000');
server.get('/', function() {
this.content = "<h1>It just works!</h1>";
return 200;
})
.start();
More examples can be found by checking out the examples repository.
Copyright & License
Copyright © 2017 Allegiant. Distributed under the terms of the MIT License, see LICENSE
Availble via npm or github.