-
-
Save jorgeluisrmx/32d72876cb1e12f5b7ba2f755fac01d8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# usage | |
pipenv shell | |
npx ijsnotebook | |
# ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ | |
# Install | |
pipenv install jupyter | |
npm install ijavascript | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm init # questionnaire to create package.json | |
npm init --yes # creates a default package.json | |
npm install <package-name> # install local package | |
npm install [email protected] #install specific version of a package | |
npm run <script> # run 'scripts' of package.sjon | |
npm list # list installed packages | |
npm outdated # list outaded packages | |
npm update <package-name> # update package | |
npm uninstall <package-name> # unsinstall local package | |
npm search <package-name> # search for packages | |
npm install -g <package-name> # install GLOBAL packake | |
# ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ | |
# install depedencies from package.json & package-lock.json | |
npm install | |
# npm version | |
npm -v | |
# Show packages installed in global mode | |
npm list -g --depth 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npx <package-name> # run package |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment