Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/onury/ocli
CLI tools for most used operations and development workflows.
https://github.com/onury/ocli
Last synced: 29 days ago
JSON representation
CLI tools for most used operations and development workflows.
- Host: GitHub
- URL: https://github.com/onury/ocli
- Owner: onury
- License: mit
- Created: 2018-10-19T03:27:40.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-05-18T23:11:40.000Z (over 2 years ago)
- Last Synced: 2024-10-05T01:09:54.060Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 287 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `@ocli`
_( Work in progress... )_
CLI tools for most used operations and development workflows.
- `@ocli/core` is the only required (core) package that provides the basic functionality for everyday-use command line operations.
- Install other (peer) packages indicated below if you need the command/functionality.
- Commands that support batch/task operations (with globs), are marked with (*).### Commands
| Command | Description | Alias | Package |
| ----------------------- | -------------------------------------- | ----- | -------------- |
| `o mkdir [path]` | Ensure/create directory structure. (*) | `md` | `@ocli/core` |
| `o remove [path]` | Remove path(s) recursively. (*) | `rm` | `@ocli/core` |
| `o clean [path]` | Clean/empty directories. (*) | `cl` | `@ocli/core` |
| `o copy [src] [dest]` | Copy files and directories. (*) | `cp` | `@ocli/core` |
| `o json [src] [dest]` | Uglify/beautify JSON file(s). (*) | | `@ocli/core` |
| `o html [src] [dest]` | Process, minify HTML file(s). (*) | | `@ocli/html` |
| `o repack [src] [dest]` | Repack an npm package.json. | | `@ocli/repack` |- Globs not allowed for `clean` command.