Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yosuke-furukawa/gitnpm
npm wrapper for libraries not published to npm, but uploaded on git
https://github.com/yosuke-furukawa/gitnpm
Last synced: about 1 month ago
JSON representation
npm wrapper for libraries not published to npm, but uploaded on git
- Host: GitHub
- URL: https://github.com/yosuke-furukawa/gitnpm
- Owner: yosuke-furukawa
- Created: 2014-03-28T04:30:50.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:44:45.000Z (11 months ago)
- Last Synced: 2024-10-09T16:53:24.903Z (about 1 month ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
gitnpm
======================npm wrapper for unpublished npm modules
npm could install library from some git repositories.
but npm user should set the library like this.```shell
$ npm install git+ssh://[email protected]:yosuke-furukawa/gitnpm.git#master
```this is so long....
*`gitnpm`* could make the command shorter.
```shell
$ gitnpm install yosuke-furukawa/gitnpm
// npm install git+ssh://[email protected]:yosuke-furukawa/gitnpm.git#master
``````shell
$ gitnpm install yosuke-furukawa/gitnpm v0.1.0
// npm install git+ssh://[email protected]:yosuke-furukawa/gitnpm.git#v0.1.0
```If you have github enterprise, you can set the path using setup command
```shell
$ gitnpm setup --hostname github.enterprise.com
$ gitnpm install yosuke-furukawa/gitnpm
// npm install git+ssh://[email protected]:yosuke-furukawa/gitnpm.git#master
```Install
======================```shell
$ npm install gitnpm -g
```