Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lambdabaa/npmr
cli program that makes working with (lots of) local npm modules easy
https://github.com/lambdabaa/npmr
Last synced: 7 days ago
JSON representation
cli program that makes working with (lots of) local npm modules easy
- Host: GitHub
- URL: https://github.com/lambdabaa/npmr
- Owner: lambdabaa
- Created: 2015-06-05T19:32:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-08T13:10:24.000Z (over 9 years ago)
- Last Synced: 2024-11-09T11:44:40.889Z (2 months ago)
- Language: JavaScript
- Size: 125 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
npmr
====npmr solves some deficiences in the implementation of local modules in
npm 2. It aspires to be deprecated once similar functionality lands in npm.### Installation
`npm install -g npmr`
### Commands
```
/**
* Like `npm install` except will notice if changes have been
* made to local modules and update them. Run from within module dir.
*/
npmr install/**
* Like `npm ls` except only prints local modules.
*/
npmr ls/**
* Like `npm publish` but replaces package dependencies specified
* by local paths with their version so we can publish to npm.
*/
npmr publish
```