Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 744 Bytes

README.md

File metadata and controls

41 lines (30 loc) · 744 Bytes

terminal

an atom-like terminal. easily extensible and customizable.

Setup

terminal is built on top of Atom's electron framework. To install:

$ make deps

To run the terminal:

$ make

Plugins

For now, all plugins are located in app/plugins. This is temporary and solely for the purposes of defining and testing the plugin api.

package.json

Every package has a corresponding json file describing it and it's behavior. For example:

{
  "name": "link",
  "main": "./lib/link.js",
  "description": "Turn urls into clickable links.",
  "license": "MIT",
  "actions": {
    "stdout": [],
    "stderr": [],
    "stdin": [],
    "display": []
  }
  "dependencies": {}
}