1.0.2 • Published 7 months ago

open-npm-link v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

open-npm-link

Open the npm link for the package

This is meant to be used in command-line tools and scripts, not in the browser.

Install

npm install --save open-npm-link

Warning: This package is native ESM and no longer provides a CommonJS export. If your project uses CommonJS, you will have to convert to ESM or use the dynamic import() function. Please don't open issues for questions regarding CommonJS / ESM.

Usage

import open from 'open-npm-link';

// Opens the react npm link in the default browser.
await open('lodash');

// Opens the react npm link in the specified browser.
await open('lodash', 'chrome');

API

function(packageName?: string, browser?: string): string;

Supported browser

  • chrome - Web browser
  • firefox - Web browser
  • edge - Web browser
  • browser - Default web browser
  • browserPrivate - Default web browser in incognito mode

browser and browserPrivate only supports chrome, firefox, and edge.

Related

LICENSE

MIT


This project is created using generator-stupid.