On GitHub, xtermjs/xterm.js-bower has picked up 0 stars, TypeScript. Repository for the deprecated bower xterm package
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
CoderPad: Online interviewing platform for programmers. Run code in many programming languages, with results displayed by xterm.js.
WebSSH2: A web based SSH2 client using xterm.js, socket.io, and ssh2.
Do you use xterm.js in your application as well? Please open a Pull Request to include it here. We would love to have it in our list.
Browser Support
Since xterm.js is typically implemented as a developer tool, only modern browsers are supported officially. Here is a list of the versions we aim to support:
Chrome 48+
Edge 13+
Firefox 44+
Internet Explorer 11+
Opera 35+
Safari 8+
Xterm.js works seamlessly in Electron apps and may even work on earlier versions of the browsers but these are the browsers we strive to keep working.
Demo
Linux or macOS
Run the following commands:
$ npm install
$ npm start
Then open http://0.0.0.0:3000 in a web browser.
Windows
First, ensure node-gyp is installed and configured correctly, then run these commands.
Note: Do not use ConEmu, as it seems to break the demo for some reason.
> npm install
> npm start
Then open http://127.0.0.1:3000 in a web browser.
Getting Started
To start using xterm.js on your browser, add the xterm.js and xterm.css to the head of your html page. Then create a <div id="terminal"></div> onto which xterm can attach itself.
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="bower_components/xterm.js/dist/xterm.css" />
<script src="bower_components/xterm.js/dist/xterm.js"></script>
</head>
<body>
<div id="terminal"></div>
<script>
var term = new Terminal();
term.open(document.getElementById('#terminal'));
term.write('Hello from \033[1;3;31mxterm.js\033[0m $ ')
</script>
</body>
</html>
Finally instantiate the Terminal object and then call the open function with the DOM object of the div.
Addons
Addons are JavaScript modules that attach functions to the Terminal prototype to extend its functionality. There are a handful available in the main repository in the dist/addons directory, you can even write your own (though they may break when the internals of xterm.js change across versions).
To use an addon, just include the JavaScript file after xterm.js and before the Terminal object has been instantiated. The function should then be exposed on the Terminal object:
var xterm = new Terminal();
// init code...
xterm.fit();
Releases
Xterm.js follows a monthly release cycle roughly.
The existing releases are available at this GitHub repo's Releases, while the roadmap is available as Milestones.
Development and Contribution
Xterm.js is maintained by SourceLair and a few external contributors, but we would love to receive contributions from everyone!
To contribute either code, documentation or issues to xterm.js please read the Contributing document before.
The development of xterm.js does not require any special tool. All you need is an editor that supports JavaScript and a browser (if you would like to run the demo you will need Node.js to get all features).
It is recommended though to use a development tool that uses xterm.js internally, to develop for xterm.js. Eating our own dogfood has been proved extremely beneficial for this project. Known tools that use xterm.js internally are:
SourceLair
Visit https://lair.io/sourcelair/xterm and follow the instructions. All development will happen in your browser.
Visual Studio Code
Download Visual Studio Code, clone xterm.js and you are all set.
Eclipse Che
You can start Eclipse Che with docker run eclipse/che start.
Codenvy
You can create a trial account or install an enterprise version with docker run codenvy/cli start.
License Agreement
If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work.
Copyright (c) 2014-2016, SourceLair, Private Company (www.sourcelair.com) (MIT License)
Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
Does xtermjs/xterm.js-bower have a project website?
No homepage URL was recorded for xtermjs/xterm.js-bower in TopGit's last sync. The README tab above frequently contains screenshots and demo links, or check the repository description on GitHub.
How active is development on xtermjs/xterm.js-bower?
The most recent commit recorded on xtermjs/xterm.js-bower was 9.5 years ago, based on the GitHub push timestamp. The repository has 1 forks — one of the better signals of community interest.
How many stars does xtermjs/xterm.js-bower have?
xtermjs/xterm.js-bower has 0 GitHub stars — refresh the page for the live number, or check github.com/xtermjs/xterm.js-bower. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
Is xtermjs/xterm.js-bower open source?
Yes — xtermjs/xterm.js-bower ships under the MIT license, which makes its source code freely readable (and, depending on license terms, forkable and reusable). Source: github.com/xtermjs/xterm.js-bower.
What topics is xtermjs/xterm.js-bower associated with?
GitHub's repository topics for xtermjs/xterm.js-bower: "xterm". TopGit's editorial category is open-source.
Where do I read more about xtermjs/xterm.js-bower?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/xtermjs/xterm.js-bower is the definitive source.
Read full README in the tab above.
Still deciding about xterm.js-bower?
One click hands the question to an AI along with this page — see what it says about xterm.js-bower.