@oi/oi

0.1.2 • Public • Published

Oi

Build Status Coverage Status NPM Version

A CLI tool for automating development tasks.

Getting Started

To install Oi:

npm install -g @oi/oi
oi -h

As an example of an Oi plugin, you can install Oi's own development plugin:

npm install -g @oi/oi-oi
oi oi -h

Note that if you are using nvm, global plugins will need to be installed using the same NVM you intended to run them with.

Structure

Oi's command-line interface is structured like that of Git. After the initial oi command follows the name of a module, and after that is an action to perform on the module. Options can be specified at any point after the oi command.

Plugins

Oi is designed to be a framework with which modular, extensible CLI tools can be built. Using the js-plugins library, Oi scans for plugins that define modules, each of which registers its own command and associated actions. New project-specific tools can then be built by aggregating the commands for existing tools, and extending them for particular use cases.

Creating a Plugin

An Oi plugin is a Node.js module that contains an extra section in its package.json file and exports classes that serve as modules.

The extra package.json section is an extensions object, which declares one or more modules within a map called oi:module. Each key is the name of a module, and the corresponding value is the path (relative to the package.json file) from which to require the module class. For example:

"extensions": {
  "oi:module": {
    "foo": "./module/foo"
  }
}

The only requirement of the exported module itself is that it must be a class, an object, or a function that returns a class or an object.

Note that the path must include a slash (e.g. ./index.js or /path/to/index.js) if it refers to a file that should be required.

Oi Plugin Examples

  • oi-oi: CLI for development tasks on Oi itself.
  • oi-sysl: CLI for running Sysl tasks.

Readme

Keywords

none

Package Sidebar

Install

npm i @oi/oi

Weekly Downloads

1

Version

0.1.2

License

MIT

Unpacked Size

41 kB

Total Files

12

Last publish

Collaborators

  • oi