termage
v0.0.1
Published
Display an image in console/terminal.
Maintainers
Readme
Termage
Display images in Console/Terminal.
import draw from 'termage'
await draw("example.png")
.then(() => process.exit(0))
.catch((err) => {
console.error("Error drawing image:", err);
process.exit(1);
});