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

cine

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cine

Frames dispanser

  • 0.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

cine

Cine

Prepare function, which gives back spcified frames, considering frame duration.

const counters = cine(['1', '2', '3', '4'], 250)
setInterval(() => console.log(counters()), 250);

It doesn't perform any output or events, but just gives a frame on request. Probably you should use something like setInterval to create animation.

Keep delay empty to disable internally timer.

Animated CLI

Usefull with cli-update and cli-spinners for creating animated text in terminal output.

const update = require('log-update');
const spinners = require('cli-spinners')
const cine = require('cine')
const animation = cine(
  spinners.dots.frames,
  spinners.dots.interval
)

setInterval(() => update(`Loading ${animation()}`))

API

cine(frames : array<any | function>, interval: number, onFinish : function)

  • frames Array of any values, but if frame is a function, it will be called, so you can pass another animation as one frame.

  • interval Ms between frames. If you do not specify value, then frame will change only on request.

  • onFinish End handler. Will be invoked at last frame.

License

MIT, 2018, Vladimir Morulus vladimirmorulus@gmail.com

Keywords

FAQs

Package last updated on 05 Jan 2019

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