https://github.com/ericzon/hello-nodemodule
First approach to create a node module.
https://github.com/ericzon/hello-nodemodule
Last synced: 12 months ago
JSON representation
First approach to create a node module.
- Host: GitHub
- URL: https://github.com/ericzon/hello-nodemodule
- Owner: ericzon
- Created: 2014-12-27T00:06:48.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-27T19:58:33.000Z (about 11 years ago)
- Last Synced: 2025-02-24T10:44:04.415Z (about 1 year ago)
- Language: JavaScript
- Size: 145 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
hello-nodemodule
================
First approach to create a node module.
## Installation
npm install hello-nodemodule --save
## Usage
var hello = require('hello-nodemodule');
console.log(hello.displayMessage());
console.log(hello.getString());
console.log(hello.getInteger());
## Tests
npm test
## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style.
Add unit tests for any new or changed functionality. Lint and test your code.
## Release History
* 0.1.5 Improving README.
* 0.1.4 Fixed Makefile & improved README.
* 0.1.3 Fixed tests.
* 0.1.2 Added two more methods for testing purpose.
* 0.1.1 Minor fix.
* 0.1.0 Initial release