jumbotron 0.0.2 copy "jumbotron: ^0.0.2" to clipboard
jumbotron: ^0.0.2 copied to clipboard

Dart 1 only

A Bash terminal written in dart that runs in the browser

jumbotron #

A Bash terminal written in dart that runs in the browser

Overview #

jumbotron is a terminal that (optionally) connects via websockets to a web server. When used with shellephone for example, jumbotron can actually be used like a shell without commands that require a tty.

To use jumbotron in your angular-dart project, simply create a module:

main.dart
import "dart:html";
import "dart:async";

import 'package:angular/angular.dart';
import 'package:angular/application_factory.dart';

import "package:jumbotron/jumbotron.dart";

class JumbotronDemoModule extends Module {
  JumbotronDemoModule() {
    bind(JumbotronComponent);
  }
}

void main () {
  applicationFactory()
    .addModule(new JumbotronDemoModule())
    .run();
}

and add a jumbotron element to your html:

main.html
<jumbotron 
  ps1="kharland@kendal-laptop$ " 
  sockaddr="127.0.0.1:8082">
</jumbotron>
output

jumbotron-demo-sh

0
likes
25
points
17
downloads

Publisher

unverified uploader

Weekly Downloads

A Bash terminal written in dart that runs in the browser

Homepage

License

MIT (license)

Dependencies

angular, browser, web_components

More

Packages that depend on jumbotron