Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binocarlos/quicknpm
Quickly bootstrap a node module folder layout
https://github.com/binocarlos/quicknpm
Last synced: 11 days ago
JSON representation
Quickly bootstrap a node module folder layout
- Host: GitHub
- URL: https://github.com/binocarlos/quicknpm
- Owner: binocarlos
- License: mit
- Created: 2013-11-19T20:04:41.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-19T21:37:45.000Z (about 11 years ago)
- Last Synced: 2024-10-31T19:45:37.523Z (19 days ago)
- Language: JavaScript
- Size: 109 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
quicknpm
========Quickly bootstrap a node module folder layout
## Example
Create a new project:
```
$ mkdir myproject && cd myproject
$ quicknpm init
```## Installation
```
$ npm install quicknpm --save
```## Usage
From the command line you can bootstrap a new node module.
In the current folder:
```
$ quicknpm init
```In a specific folder:
```
$ quicknpm init /my/custom/folder
```## API
You can use the module from within your own node program:
```js
var QuickNPM = require('quicknpm');var job = new QuickNPM();
job.on('complete', function(){
})job.init('/my/project/folder');
```## License
MIT