-
Notifications
You must be signed in to change notification settings - Fork 0
upload
Subhajit Sahu edited this page Feb 3, 2021
·
7 revisions
Uploads recorded asciicast to asciinema.org site. ๐ฆ ๐บ ๐ ๐ผ ๐ ๐ ๐ฐ ๐
Alternatives: upload, uploadSync.
asciinema.upload(f, [fn]);
// f: filename
// fn: callback (err, asciicast URL)
// โ asciicast URL (promise)
const asciinema = require("extra-asciinema");
async function main() {
await asciinema.upload("saved.cast");
// asciicast URL
}
main();