https://github.com/darkroomengineering/omnes
alias npm and ✨profit✨
https://github.com/darkroomengineering/omnes
manager package wrapper
Last synced: about 1 year ago
JSON representation
alias npm and ✨profit✨
- Host: GitHub
- URL: https://github.com/darkroomengineering/omnes
- Owner: darkroomengineering
- Created: 2024-04-02T19:13:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-23T22:11:24.000Z (almost 2 years ago)
- Last Synced: 2025-03-12T02:51:17.600Z (over 1 year ago)
- Topics: manager, package, wrapper
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 28
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
## Introduction
**Omnes** is a command-line interface (CLI) tool that simplifies the execution of common commands across different package managers. It automatically detects the package manager used in your project and runs the appropriate command using the detected package manager.
The name is the translation from 'all of them' to latin.
## Installation
To install Omnes globally, use the following command:
```bash
npm install -g omnes-cli
```
## Usage
Once installed, you can use the omnes command followed by the desired command you want to run. Omnes will detect the package manager based on the presence of specific lockfiles in your project directory and execute the command accordingly.
```bash
omnes
```
### For example:
To install dependencies:
```bash
omnes install
```
To run a development server:
```bash
omnes run dev
```
To build your project:
```bash
omnes run build
```
## Omnes supports the following package managers:
- npm
- Yarn
- pnpm
- Bun
If no lockfile is found, Omnes will default to using npm.
### Omnes detects the package manager by looking for specific lockfiles in your project directory:
- Bun: bun.lockb
- pnpm: pnpm-lock.yaml
- npm: package-lock.json
- Yarn: yarn.lock
\*If none of these lockfiles are found, Omnes will default to using npm.
## Authors
This open source package is maintained by the darkroom.engineering team:
- Clément Roche ([@clementroche\_](https://twitter.com/clementroche_)) – [darkroom.engineering](https://darkroom.engineering)
- Guido Fier ([@uido15](https://twitter.com/uido15)) – [darkroom.engineering](https://darkroom.engineering)
- Leandro Soengas ([@lsoengas](https://twitter.com/lsoengas)) - [darkroom.engineering](https://darkroom.engineering)
- Franco Arza ([@arzafran](https://twitter.com/arzafran)) - [darkroom.engineering](https://darkroom.engineering)
## License
[The MIT License.](https://opensource.org/licenses/MIT)