Socket
Socket
Sign inDemoInstall

yarn

Package Overview
Dependencies
Maintainers
6
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yarn

📦🐈 Fast, reliable, and secure dependency management.


Version published
Weekly downloads
4.7M
decreased by-19.36%
Maintainers
6
Weekly downloads
 
Created

What is yarn?

Yarn is a fast, reliable, and secure dependency management tool that is used to manage project dependencies in JavaScript and Node.js environments. It caches every package it downloads, so it never needs to download the same package again. It also parallelizes operations to maximize resource utilization, and it uses checksums to verify the integrity of every installed package before its code is executed.

What are yarn's main functionalities?

Adding a dependency

This command adds the lodash package to the project's dependencies.

yarn add lodash

Upgrading a dependency

This command upgrades the react package to its latest version according to the version range specified in the package.json file.

yarn upgrade react

Removing a dependency

This command removes the moment package from the project's dependencies.

yarn remove moment

Installing all dependencies

This command installs all the dependencies listed in the project's package.json file.

yarn install

Locking down dependency versions

This command installs dependencies based on the yarn.lock file without generating a new lock file, ensuring reproducibility across installations.

yarn install --frozen-lockfile

Other packages similar to yarn

FAQs

Package last updated on 14 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc