“npm” Command Cheat Sheet

Welcome back to a new blog post. Throughout my uses of npm and creating applications in angular, I have found a set of commands that I keep coming back to to use again and again. While they’re all used very commonly, it might be heard to remember them …


This content originally appeared on DEV Community and was authored by geetcloud

Welcome back to a new blog post. Throughout my uses of npm and creating applications in angular, I have found a set of commands that I keep coming back to to use again and again. While they're all used very commonly, it might be heard to remember them all of the time. So without any further ado, here they are for your convenient use! Hope it helps.

To install node.js

 # To install node.js
 # Install from the below official download link.
 # https://nodejs.org/en/#download

To install typescript

# To install typescript
npm install typescript -g

To install angular CLI

#  To install angular CLI
npm install @angular/cli -g

To check angular version

# To check angular version
ng version

To check the existing installed paths of node.js

# To check the existing installed paths of node.js
where node

To create new angular app

# To create new angular app
ng new <app_name>

To create module

# To create module
ng g module <module_name>

To install dependencies

# To install dependencies
npm install

To run or serve app

# To run/serve app
#To serve app => cd to the app folder and run
#Note:- npm start also will call ng serve and start the application.
ng serve

To create service

# To create service
ng gnerate service service_name

To generate interface

# To generate interface
ng generate interface git-search

To install latest AngularFire and Firebase for latest Angular CLI 7.x

# To install latest AngularFire and Firebase for latest Angular CLI 7.x
npm install firebase @angular/fire --save

To skip/avoid long path in terminal (shortcut)

# To skip/avoid long path in terminal (shortcut)
prompt $$

Thanks for reading this post!

I hope this article is informative and helpful in some way. If it is, please like and share this article. Follow me on Twitter | LinkedIn for more related tips and posts.

Happy learning!


This content originally appeared on DEV Community and was authored by geetcloud


Print Share Comment Cite Upload Translate Updates
APA

geetcloud | Sciencx (2021-08-29T21:21:57+00:00) “npm” Command Cheat Sheet. Retrieved from https://www.scien.cx/2021/08/29/npm-command-cheat-sheet/

MLA
" » “npm” Command Cheat Sheet." geetcloud | Sciencx - Sunday August 29, 2021, https://www.scien.cx/2021/08/29/npm-command-cheat-sheet/
HARVARD
geetcloud | Sciencx Sunday August 29, 2021 » “npm” Command Cheat Sheet., viewed ,<https://www.scien.cx/2021/08/29/npm-command-cheat-sheet/>
VANCOUVER
geetcloud | Sciencx - » “npm” Command Cheat Sheet. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/08/29/npm-command-cheat-sheet/
CHICAGO
" » “npm” Command Cheat Sheet." geetcloud | Sciencx - Accessed . https://www.scien.cx/2021/08/29/npm-command-cheat-sheet/
IEEE
" » “npm” Command Cheat Sheet." geetcloud | Sciencx [Online]. Available: https://www.scien.cx/2021/08/29/npm-command-cheat-sheet/. [Accessed: ]
rf:citation
» “npm” Command Cheat Sheet | geetcloud | Sciencx | https://www.scien.cx/2021/08/29/npm-command-cheat-sheet/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.