jsterm
jsterm是由Node.js和xterm.js组成的终端模拟器。
要求
文献资料
入门
使用npm安装jsterm:
$ npm install jsterm
您现在可以像这样使用jsterm:
let Terminal = require ( 'jsterm' )
let term = new Terminal ( 1337 ) // localhost:1337 - Default shell
term . add ( 'cmd.exe' ) // localhost:1337/cmd.exe
term . add ( 'bash.exe' ) // localhost:1337/bash.exe
term . add ( 'node.exe' ) // localhost:1337/node.exe
term . listen ( )
console .
1