-
Notifications
You must be signed in to change notification settings - Fork 0
cat
Subhajit Sahu edited this page Feb 3, 2021
·
8 revisions
Prints full output of recorded asciicast to a terminal. ๐ฆ ๐บ ๐ ๐ผ ๐ ๐ ๐ฐ ๐
asciinema.cat(f, [fn]);
// f: filename
// fn: callback (err, full output)
// โ full output (including all escape sequences)
const asciinema = require("extra-asciinema");
async function main() {
await asciinema.cat("saved.cast");
// output in "saved.cast" file
}
main();