Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/crissdev/nodejs-api
- Owner: crissdev
- License: mit
- Created: 2014-09-24T11:52:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-04T16:06:39.000Z (about 10 years ago)
- Last Synced: 2024-04-23T03:34:52.715Z (8 months ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)