preferred-pm
Detects what package manager was used for installation
Last updated a year ago by zkochan .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install preferred-pm 
SYNC missed versions from official npm registry.

preferred-pm

Returns the preferred package manager of a project

npm version

  • Inside a Yarn workspace, Yarn is preferred.
  • Inside a pnpm workspace, pnpm is preferred.
  • If a package-lock.json is present, npm is preferred.
  • If a yarn.lock is present, Yarn is preferred.
  • If a pnpm-lock.yaml is present, pnpm is preferred.
  • If a bun.lockb is present, Bun is preferred.
  • If a node_modules is present, tries to detect which package manager installed it.

Installation

<pnpm|yarn|npm|bun> add preferred-pm

Usage

'use strict'
const preferredPM = require('preferred-pm')

preferredPM(process.cwd())
    .then(pm => console.log(pm))
//> {name: "npm", version: ">=5"}

Related

  • which-pm - Detects what package manager was used for installation
  • which-pm-runs - Detects what package manager executes the process

License

MIT © Zoltan Kochan

Current Tags

  • 4.1.1                                ...           latest (a year ago)
  • 3.0.2                                ...           pnpm-temp (6 years ago)

15 Versions

  • 4.1.1                                ...           a year ago
  • 4.1.0                                ...           a year ago
  • 4.0.0                                ...           2 years ago
  • 3.1.4                                ...           2 years ago
  • 3.1.3                                ...           2 years ago
  • 3.1.2                                ...           3 years ago
  • 3.1.1                                ...           3 years ago
  • 3.1.0                                ...           3 years ago
  • 3.0.3                                ...           5 years ago
  • 3.0.2                                ...           6 years ago
  • 3.0.1                                ...           6 years ago
  • 3.0.0                                ...           6 years ago
  • 2.0.0                                ...           7 years ago
  • 1.0.1                                ...           8 years ago
  • 1.0.0                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (3)
Dev Dependencies (5)

Copyright 2013 - present © cnpmjs.org | Home |