Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/crissdev/nodejs-api

Expose node.js modules through an object
https://github.com/crissdev/nodejs-api

Last synced: about 2 months ago
JSON representation

Expose node.js modules through an object

Awesome Lists containing this project

README

        

# nodejs-api

[![Build Status](https://travis-ci.org/crissdev/nodejs-api.png?branch=master)](https://travis-ci.org/crissdev/nodejs-api)

> Expose node.js modules through an object

## Install

```sh
$ npm install --save node-api
```

## Usage

```js
var nodes = require('nodejs-api');
nodes.console.log('hello'); // will print hello
```

See all modules available:

```js
console.log(Object.keys(require('nodejs-api')));
```

## LICENSE

MIT © [Cristian Trifan](http://crissdev.com)