"Components in Unity" was retired on August 1, 2018.
Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Well done!
You have completed npm Basics!
You have completed npm Basics!
Semantic Version is a system for communicating changes in versions of projects.
Further Reading
Semantic Versioning
MAJOR.MINOR.PATCH
-
^
before a version number means install up to the latestMINOR
release.- e.g.
^1.1
can install1.3
if available but not2.0
- e.g.
-
~
before a version number means install up to the latestPATCH
release.- e.g.
~2.0.1
can install2.0.9
if available but not2.1.0
- e.g.
Terminal Commands
- Clear the screen
clear
npm Command Line Usage
-
See list of commands
npm
-
Installing a packages from
package.json
npm install
-
Check for outdated packages
npm outdated
-
Update packages in your project
- For local packages
npm update
- For global packages
npm update <package name> -g
- e.g.
npm update http-server -g
- e.g.
- For local packages
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up