
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
Turn your terminal into a canvas.
It is available through npm:
npm install clivas
It is easy to use
var clivas = require('clivas');
var frame = 0;
setInterval(function() {
clivas.clear(); // clears the canvas
clivas.line('hello world (#frame '+frame+')');
clivas.line('{red:also} {green:colors}!');
frame++;
}, 200);
When you draw something with clivas you can use the format patten to help you
clivas.line('{red:i am red} and {blue: i am blue}');
If you wanted to inverse a color you would provide the inverse tag
clivas.line('{red+inverse:i am inversed}');
The format pattern can also help you add whitespace
clivas.line('[{10:===>}]'); // prints [===> ]
clivas.clear() - Clears the screen. If you called clivas.pin() it would only clear up until the pin.
clivas.flush() - Clears everything below the cursor.
clivas.pin([lineNumber]) - Only clear to here when clivas.clear() is called
clivas.line(str) - Write a line (accepts a format string as described above)
clivas.write(str) - Same as clivas.line(str) except it does not add a newline
clivas.cursor(enable) - Enable or disable the terminal cursor
clivas.alias(name, value) - Add an alias to the format pattern i.e. clivas.alias('link', 'red+underline') enables you to use {link:http://google.com}
MIT
FAQs
use your terminal as a canvas. features easy redrawing, colors and more
The npm package clivas receives a total of 322 weekly downloads. As such, clivas popularity was classified as not popular.
We found that clivas demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.