Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yosuke-furukawa/go-gitnpm
gitnpm is npm wrapper, go-gitnpm is porting gitnpm to Golang
https://github.com/yosuke-furukawa/go-gitnpm
Last synced: about 1 month ago
JSON representation
gitnpm is npm wrapper, go-gitnpm is porting gitnpm to Golang
- Host: GitHub
- URL: https://github.com/yosuke-furukawa/go-gitnpm
- Owner: yosuke-furukawa
- Created: 2014-07-08T17:55:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-09T16:46:50.000Z (over 10 years ago)
- Last Synced: 2024-04-15T12:17:32.637Z (7 months ago)
- Language: Go
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
go-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
$ go-gitnpm install yosuke-furukawa/gitnpm
// npm install git+ssh://[email protected]:yosuke-furukawa/gitnpm.git#master
``````shell
$ go-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
$ go-gitnpm setup --hostname github.enterprise.com
$ go-gitnpm install yosuke-furukawa/gitnpm
// npm install git+ssh://[email protected]:yosuke-furukawa/gitnpm.git#master
```Install
======================