Socket
Socket
Sign inDemoInstall

@allegiant/core

Package Overview
Dependencies
4
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @allegiant/core

Small modular, effective app framework


Version published
Weekly downloads
6
increased by500%
Maintainers
2
Install size
958 kB
Created
Weekly downloads
 

Changelog

Source

0.1.0 (12/27/2017) @echopoint

  • split modules to separate packages

Readme

Source

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 © 2017 Allegiant. Distributed under the terms of the MIT License, see LICENSE

Availble via npm or github.

Keywords

FAQs

Last updated on 05 Jan 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc