https://github.com/zkochan/which-pm
Detects what package manager was used for installation
https://github.com/zkochan/which-pm
Last synced: 3 months ago
JSON representation
Detects what package manager was used for installation
- Host: GitHub
- URL: https://github.com/zkochan/which-pm
- Owner: zkochan
- License: mit
- Archived: true
- Created: 2017-04-04T14:45:21.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-29T19:00:42.000Z (almost 7 years ago)
- Last Synced: 2024-11-02T17:36:36.301Z (8 months ago)
- Language: JavaScript
- Size: 69.3 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> This package has been move to https://github.com/zkochan/packages/tree/master/which-pm
# which-pm
> Detects what package manager was used for installation
[](https://www.npmjs.com/package/which-pm) [](https://travis-ci.org/zkochan/which-pm)
Can detect [npm](https://github.com/npm/cli), [pnpm](https://github.com/pnpm/pnpm) and [yarn](https://github.com/yarnpkg/yarn).
## Installation
```bash
npm i which-pm
# or
pnpm i which-pm
# or
yarn add which-pm
```## Usage
```js
'use strict'
const whichpm = require('which-pm')whichpm(process.cwd())
.then(pm => console.log(pm))
.catch(err => console.error(err))
//> {name: "pnpm", version: "0.64.2"}
```## Related
* [preferred-pm](https://github.com/zkochan/preferred-pm) - Returns the preferred package manager of a project
* [which-pm-runs](https://github.com/zkochan/which-pm-runs) - Detects what package manager executes the process## License
[MIT](LICENSE) © [Zoltan Kochan](https://kochan.io)