Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

nyarn

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nyarn

A shell alias that prevent developers from mistakenly installing packages. (npm <=> yarn <=> lerna)

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

nyarn

npm-version-image license-image

Installation

Global install from npm.

$ npm i -g nyarn

Add lines to your shell configuration file.

alias npm='nyarn npm'
alias yarn='nyarn yarn'
# or
# alias yarnpkg='nyarn yarnpkg'

Example

$ npm init -y
$ npm i

$ ls -1
package-lock.json
package.json

$ yarn
There is a lockfile in this project generated by npm.
You should use npm instead of yarn.
$ yarn init -y
$ yarn

$ ls -1
node_modules
package.json
yarn.lock

$ npm i
There is a lockfile in this project generated by yarn.
You should use yarn instead of npm.
$ lerna init

$ ls -1
lerna.json
package.json
packages

$ npm i
This is a root package of Lerna.
You should use lerna instead of npm.

$ cd packages
$ npm i
This is a Lerna scoped package.
You should use lerna instead of npm.

Question

Q. My project use yarn, but I just want to run npm -v anyway.

A. command npm -v

Keywords

FAQs

Package last updated on 27 Feb 2019

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