@allegiant/core

0.1.0 • Public • Published

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.

Npm Version Build Status Coverage Status

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.

Package Sidebar

Install

npm i @allegiant/core

Weekly Downloads

2

Version

0.1.0

License

MIT

Last publish

Collaborators

  • gabrielcsapo
  • echopoint