git-plus-npm
v1.0.0
Published
Tool for lazy developers, run npm commands directly through git and be more lazy
Downloads
1
Maintainers
Readme
What is it?
As we use git
frequently to manage our Web projects, it is common to make a mistake to mix npm
commands with git
e.g. we mistakenly type
git install
instead of npm install
or git start
instead of npm start
etc.
Then here this tool comes to solve these issues: now you can run any npm
command directly through git
command e.g. run git install
to install npm node modules
or run git test
to run test cases or even run git start
to start the server, you don't need to switch from git
to npm
, JUST BE LAZY 😎.
Run npm commands through git
How does it work?
It just adds aliases
for every npm commands to git and it doesn't affect the existing git commands, so you are good to go.
Installation
Install it from npm registry:
npm install -g git-plus-npm
Usage
After installing the tool, you are ready use npm commands through git:
Run git install
instead of npm install
Run git i
instead of npm i
Run git test
instead of npm test
Run git start
instead of npm start
Supported Commands
The following npm
commands can be run through git
:
- access
- adduser
- audit
- bin
- bugs
- c
- cache
- ci
- cit
- completion
- create
- ddp
- dedupe
- deprecate
- dist-tag
- docs
- doctor
- edit
- explore
- get
- help-search
- hook
- i
- isntall
- install
- install-test
- it
- link
- list
- ln
- login
- logout
- ls
- outdated
- owner
- pack
- ping
- prefix
- profile
- prune
- publish
- rb
- rebuild
- repo
- restart
- root
- run
- run-script
- s
- se
- search
- set
- shrinkwrap
- star
- stars
- start
- stop
- t
- team
- test
- token
- tst
- un
- uninstall
- r
- unlink
- remove
- unpublish
- unstar
- up
- update
- v
- view
- whoami
Contributing
Your PRs and stars are always welcome.
Checkout the CONTRIBUTING guides.