nor-api

0.0.3 • Public • Published

Build Status

nor-api -- Simple API library for Node.js

Warning! This code is experimental and in state of preliminary development. Use at your own risk.

License

It's under MIT-style open source license -- see https://github.com/Sendanor/nor-api/blob/master/LICENSE.txt.

Installation

You can install it simply from NPM:

npm install nor-api

Usage

Here's an example HTTP service:

var config = require('nor-config').from(__dirname);
config._def('port', 3000);
var api = require('nor-api');
api.createServer(config, {
    'hello': 'world',
    'date': function() {
        return ''+new Date();
    }
});

It has resources at locations:

Once running, the HTTP service will be available at http://localhost:3000.

See also nor-config for more details about the configuration.

Readme

Keywords

none

Package Sidebar

Install

npm i nor-api

Weekly Downloads

0

Version

0.0.3

License

MIT

Last publish

Collaborators

  • jhh