Skip to content

Instantly share code, notes, and snippets.

@devalexandre
Created September 7, 2019 19:00
Show Gist options
  • Save devalexandre/812c5183be0aff89f92d01fc7657802e to your computer and use it in GitHub Desktop.
Save devalexandre/812c5183be0aff89f92d01fc7657802e to your computer and use it in GitHub Desktop.
// source https://jsbin.com
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/xterm/3.14.5/xterm.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/xterm/3.14.5/xterm.min.js"></script>
</head>
<body>
<div id="terminal"></div>
<script>
var term = new Terminal();
term.open(document.getElementById('terminal'));
term.write('$ ')
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment