Report this

What is the reason for this report?

Cheat Sheet: npm vs Yarn Commands

Updated on October 28, 2020
William LeMatt Abrams

By William Le and Matt Abrams

Cheat Sheet: npm vs Yarn Commands

Introduction

This is a cheat sheet that you can use as a handy reference for npm & Yarn commands.

For a more comprehensive overview of npm, explore our tutorial How To Use Node.js Modules with npm and package.json .

npm vs. Yarn

There are many similarities between npm and Yarn. Yarn (released 2016) drew considerable inspiration from npm (2010).

On the flip-side, their similarities can lead to confusion and small mistakes when you find yourself using both package managers.

Here is a useful reference to keep the two CLIs straight:

Command npm yarn
Install dependencies npm install yarn
Install package npm install [package] yarn add [package]
Install dev package npm install --save-dev [package] yarn add --dev [package]
Uninstall package npm uninstall [package] yarn remove [package]
Uninstall dev package npm uninstall --save-dev [package] yarn remove [package]
Update npm update yarn upgrade
Update package npm update [package] yarn upgrade [package]
Global install package npm install --global [package] yarn global add [package]
Global uninstall package npm uninstall --global [package] yarn global remove [package]

Things that Haven’t Changed

Here are some commands that Yarn decided not to change:

npm yarn
npm init yarn init
npm run yarn run
npm test yarn test
npm login (and logout) yarn login (and logout)
npm link yarn link
npm publish yarn publish
npm cache clean yarn cache clean

Conclusion

For a more comprehensive overview of npm, explore our tutorial How To Use Node.js Modules with npm and package.json .

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about our products

About the author(s)

William Le
William Le
Author
Matt Abrams
Matt Abrams
Editor
See author profile

Supporting the open-source community one tutorial at a time. Former Technical Editor at DigitalOcean. Expertise in topics including Ubuntu 22.04, Ubuntu 20.04, CentOS, and more.

Category:
Tags:

Still looking for an answer?

Was this helpful?


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Creative CommonsThis work is licensed under a Creative Commons Attribution-NonCommercial- ShareAlike 4.0 International License.
Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.