0.0.3 • Published 11 years ago

nor-api v0.0.3

Weekly downloads
5
License
-
Repository
github
Last release
11 years ago

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.