Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zkochan/which-pm
Detects what package manager was used for installation
https://github.com/zkochan/which-pm
Last synced: 12 days 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-29T19:00:42.000Z (about 6 years ago)
- Last Synced: 2024-08-02T07:12:33.093Z (3 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
[![npm version](https://img.shields.io/npm/v/which-pm.svg)](https://www.npmjs.com/package/which-pm) [![Build Status](https://img.shields.io/travis/zkochan/which-pm/master.svg)](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)