Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/megapixel99/mpm

MPM (Package Manager-Package Manager) is a CLI application for managing multiple package managers. https://github.com/samsquire/ideas idea #12
https://github.com/megapixel99/mpm

cli management manager nodejs package package-manager python script shell shell-script

Last synced: 5 days ago
JSON representation

MPM (Package Manager-Package Manager) is a CLI application for managing multiple package managers. https://github.com/samsquire/ideas idea #12

Awesome Lists containing this project

README

        

# MPM
###### (Package Manager-Package Manager)
MPM is a CLI application (with an API component) written in NodeJS for managing multiple package managers.

## Installation
Download `install.py`, then run the following command in the directory where
`install.py` was downloaded (you may need to use sudo):
```bash
$ python ./install.py
```
Then add the executable to your path: `export PATH=$PATH:/usr/local/mpm/bin`

## CLI Usage
Install and run a script from the internet
```bash
$ mpm install \
script/[email protected]/rubygems/rubygems/master/blob/setup.rb
```
Install one package from one source
```bash
$ mpm install \
gem/rails
```
Install multiple packages from one source
```bash
$ mpm install \
npm/express,axios
```
Install multiple packages from multiple sources
```bash
$ mpm install \
npm/express,axios \
apt/mysql-server,mysql-client
```
Install one package per source
```bash
$ mpm install \
npm/express \
apt/mysql-server
```

## CLI Options
-s, -silent: no logs wil be output, not even error logs

-v, -verbose: all logs will be output

## Contributing
Please see [`CONTRIBUTING.md`](https://github.com/Megapixel99/MPM/blob/master/CONTRIBUTING.md)

## Known Issues
If you run `build.sh` in zshell, you may receive:
```
zsh compinit: insecure directories and files, run compaudit for list.
Ignore insecure directories and files and continue [y] or abort compinit [n]?
```
If you receive this, please run `build.sh` again and the error will not appear.

## License
```
Copyright 2020 Seth Wheeler

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```