open-npm-link
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

open-npm-link

Open the npm link for the package

Version PRs Welcome GitHub license

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.

LICENSE

MIT


This project is created using generator-stupid.

Package Sidebar

Install

npm i open-npm-link

Weekly Downloads

2

Version

1.0.2

License

MIT

Unpacked Size

4.83 kB

Total Files

5

Last publish

Collaborators

  • yaoyuanzhang