Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/f1lt3r/console-canvas
- Owner: F1LT3R
- License: mit
- Created: 2014-11-14T19:25:15.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-14T21:09:08.000Z (almost 10 years ago)
- Last Synced: 2023-03-23T03:52:05.173Z (over 1 year ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);