shelljs-plugin-clear

A ShellJS plugin for the clear command.

Usage no npm install needed!

<script type="module">
  import shelljsPluginClear from 'https://cdn.skypack.dev/shelljs-plugin-clear';
</script>

README

shelljs-plugin-clear

Build Status npm shelljs-plugin

A ShellJS plugin for the clear() command for REPL use.

Installation

$ npm install --save shelljs
$ npm install --save shelljs-plugin-clear

Usage

To use this plugin in your REPL, include it like so:

> require('shelljs-plugin-clear');
> var shell = require('shelljs');
> shell.clear();

Writing plugins

If you're interested in taking a look at the current state of the plugin API, take a look at index.js. This has helpful comments explaining the necessary boilerplate for writing a plugin. For an example usage of the plugin, take a look at test/test.js.