an atom-like terminal. easily extensible and customizable.
terminal is built on top of Atom's electron framework. To install:
$ make deps
To run the terminal:
$ make
For now, all plugins are located in app/plugins
. This is temporary and solely for the purposes of defining and testing the plugin api.
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": {}
}