caniuse-pnpm

Check if pnpm is available.

Usage no npm install needed!

<script type="module">
  import caniusePnpm from 'https://cdn.skypack.dev/caniuse-pnpm';
</script>

README

caniuse-pnpm

NPM npm npm npm type definitions pipeline status

Check if pnpm is available.

Installation

npm install caniuse-pnpm
# or
yarn add caniuse-pnpm
# or
pnpm install caniuse-pnpm

CLI

You can also install as global package to use CLI.

npm install -g caniuse-pnpm
# or
yarn global add caniuse-pnpm
caniuse-pnpm

Check if pnpm is available.

Options:
  --help, -h     Show help                                             [boolean]
  --version, -v  Show version number                                   [boolean]

Usage

const caniusePNPM = require('caniuse-pnpm');

if (caniusePNPM()) {
    console.log('pnpm is available. You can use pnpm.');
} else {
    console.log('pnpm is not available! You cannot use pnpm.');
}

Related