Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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
$ repl

DESCRIPTION
Open an interactive REPL session to run commands

EXAMPLES
$ repl
```

_See code: [src/commands/repl.ts](https://github.com/sisou/oclif-plugin-repl/blob/v0.4.0/src/commands/repl.ts)_