Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sisou/oclif-plugin-repl
An Oclif plugin that allows command interaction through an interactive REPL.
https://github.com/sisou/oclif-plugin-repl
Last synced: 2 months ago
JSON representation
An Oclif plugin that allows command interaction through an interactive REPL.
- Host: GitHub
- URL: https://github.com/sisou/oclif-plugin-repl
- Owner: sisou
- Created: 2021-03-13T22:52:00.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-09T06:54:51.000Z (over 2 years ago)
- Last Synced: 2024-10-16T00:33:17.896Z (3 months ago)
- Language: TypeScript
- Size: 190 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
oclif-plugin-repl
===========A plugin that allows command interaction through a read-eval-print loop.
* [Installation](#installation)
* [Commands](#commands)# Installation
`npm i -S @sisou/oclif-plugin-repl`
Then update package.json to include it in your list of oclif plugins.
```json
"oclif": {
"plugins": [
"@sisou/oclif-plugin-repl"
]
},
```# Commands
* [` repl`](#your-command-repl)
## ` repl`
Open an interactive REPL session to run commands
```
USAGE
$ replDESCRIPTION
Open an interactive REPL session to run commandsEXAMPLES
$ repl
```_See code: [src/commands/repl.ts](https://github.com/sisou/oclif-plugin-repl/blob/v0.4.0/src/commands/repl.ts)_