Skip to content

allegiant-js/core

Repository files navigation

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.

About

Small effective nodejs app framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published