erezhod / terminal7

A Touchable Terminal Emulator & Multiplexers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Terminal Seven

Test

Welcome!

Terminal 7 is a terminal multiplexer with full gesture support. With Terminal 7, you can swipe to split a pane, tap it with two fingers to zoom and more (gestures for a complete list). tmux is our inspiration and we strive to support as many of its functions and features as possible.

The code here is mainly ES6 with no framworks. We do use the following projects:

  • cordova for app packaging
  • xterm.js for terminal emulation
  • webpack to package the source (do we really need it?)
  • karma, mocha & chai for tests.

For networking we use WebRTC, the web standard protocol for real time communications. It's a UDP based web-era protocol with wide support and a great implmentation in go - webrtc - that we use as a base for our server's daemon.

Installing

Just clone this repo and run npm i. In your server you'll need to install and run our backend project - webexec

Running

To start terminal 7 in the browser use:

npm run dev

and point your browser at http://localhost:3333

Terminal7 adds a global window.terminal7 you can use in the debugger.

Development

We welcome bug reports as well as ideas for new features. If you are ready to code yourslef, follow these steps:

  1. Fork it
  2. Clone it
  3. npm i
  4. Create your feature branch (git branch my-new-feature)
  5. Commit your changes (git commit -am 'Add some feature')
  6. Push to the branch (git push origin my-new-feature)
  7. Create new Pull Request

Please run npm test before pushing.

About

A Touchable Terminal Emulator & Multiplexers

License:GNU General Public License v3.0


Languages

Language:JavaScript 73.8%Language:CSS 15.9%Language:HTML 6.9%Language:Swift 2.9%Language:Ruby 0.5%