Archive. Date of access: 12 Jan 2022
Marak Squires eec02f9359 [api] Box drawing is now optional | 13 лет назад | |
---|---|---|
bin | 13 лет назад | |
lib | 13 лет назад | |
templates | 13 лет назад | |
.gitignore | 13 лет назад | |
ReadMe.md | 13 лет назад | |
package.json | 13 лет назад |
share templates between the browser and the terminal
note: the current DOM implementation is a hack, at best. expect it to break, badly.
browser demo http://ohh.io/ANSIdom
terminal demo
curl ohh.io/ANSIdom
these both share the same HTML template
npm install ANSIdom
var ANSIdom = require('../lib/ANSIdom').ANSIdom,
fs = require('fs');
var dom = new ANSIdom();
var template = fs.readFileSync('./templates/index.html').toString();
dom.init(function(err){
if (err) {
throw err;
}
//
// Note: `process` can be any streamable interface, like httpServer.response
//
dom.render(template, process);
});
see: /bin/
folder for some demos