Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/f1lt3r/console-canvas

Console-Canvas allows you to use HTML5 Canvas commands to draw in your terminal/console. Outputs color ASCII characters instead of pixels.
https://github.com/f1lt3r/console-canvas

Last synced: 26 days ago
JSON representation

Console-Canvas allows you to use HTML5 Canvas commands to draw in your terminal/console. Outputs color ASCII characters instead of pixels.

Awesome Lists containing this project

README

        

#Console-Canvas

Console-Canvas allows you to use HTML5 Canvas commands to draw in your terminal/console. Outputs color ASCII characters instead of pixels.

##Example

var canvas = require('console-canvas')
, ansi = require('ansi')
, ctx = canvas.getContext('2d')
;

ctx.moveTo(0,0);
ctx.lineTo(100,48);