0.2.0 • Published 4 years ago

clgl v0.2.0

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

clgl

A graphic lib for command line.

Introduction

This is a graphic lib for command line, which enables you to shade graphics in console. Technically, the graphics are output to NodeJS streams, so you can also direct them to other places.

Example

const { Root, Node, Shaders } = require('clgl');

const root = new Root();

const box = new Node({
    left: 1,
    top:1,
    width: 10,
    height: 3,
    shader: Shaders.Pure('#'),
});
root.childNodes.push(box);

root.tick();

Links