Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ansimator

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ansimator

Animate an array of ansi string frames with charm

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

ansimator

Plop some simple animations onto the terminal with ANSI codes!

Example:

var charm = require("charm")(process)
var ansimate = require("ansimator")(charm);

var frames = [

  [
    "   ▜▘         ",
    "   ▐    ☻     ",
    "    ▚▄█████▚  ",
    "      ▐███  ▐ ",
    " ▜▛   ▐███    ",
    " ▔▔   ▐  ▐    ",
    "      ▟  ▟    ",
    "              " ].join("\n"),

  [
    "              ",
    "*tink*  ☻     ",
    "  ▖  ▄█████▚  ",
    "  ▛▀▀ ▐███  ▐ ",
    " ▜▛   ▐███    ",
    " ▔▔   ▐  ▐    ",
    "      ▟  ▟    ",
    "              " ].join("\n")


];

var metalworker = ansimate(frames).move(0, 2, function (metalworker) {
  setInterval(metalworker.next, 800);
});

metalworker.charm.on("^C", function () {
  metalworker.charm.display("reset");
  metalworker.charm.destroy();
  process.exit();
});

Install:

npm install ansimator

Usage:

ansimator(...)

This function takes a charm and returns an instance of ansimate.

ansimate(frames)

Frames consists of a list of strings, where each string represents a single unicode image.

ansimate(frames) Properties and Methods:

  • position(x, y): Position the top-left cursor position as in charm.

  • move(x, y, cb): Move the top-left cursor position as in charm. Takes a callback argument which fires after polling is complete.

  • next(): Draws the next frame.

  • frames: Feel free to modify the frames at runtime.

  • charm: Access the associated instance of charm directly.

License:

MIT/X11.

Keywords

FAQs

Package last updated on 15 Aug 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc