mirror of
https://github.com/fcwu/docker-ubuntu-vnc-desktop
synced 2025-12-06 16:32:47 +01:00
15 lines
219 B
JavaScript
15 lines
219 B
JavaScript
var tty = require('tty.js');
|
|
|
|
var app = tty.createServer({
|
|
shell: 'login',
|
|
//users: {
|
|
// foo: 'bar'
|
|
//},
|
|
port: 3000
|
|
});
|
|
|
|
//app.get('/foo', function(req, res, next) {
|
|
// res.send('bar');
|
|
//});
|
|
|
|
app.listen();
|