Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/megapixel99/mpm
- Owner: Megapixel99
- License: apache-2.0
- Created: 2020-07-26T19:41:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T23:01:11.000Z (over 1 year ago)
- Last Synced: 2024-12-20T12:09:08.912Z (about 1 month ago)
- Topics: cli, management, manager, nodejs, package, package-manager, python, script, shell, shell-script
- Language: JavaScript
- Homepage:
- Size: 237 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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 WheelerLicensed 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 athttp://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.
```