Socket
Socket
Sign inDemoInstall

ansimator

Package Overview
Dependencies
2
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ansimator

Animate an array of ansi string frames with charm


Version published
Weekly downloads
1
Maintainers
1
Install size
26.8 kB
Created
Weekly downloads
 

Readme

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

Last updated on 15 Aug 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc