Socket
Socket
Sign inDemoInstall

marquee-ora

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    marquee-ora

A tool to create an ora compatible spinner objects that behave like a scrolling marquee


Version published
Weekly downloads
5
increased by150%
Maintainers
1
Install size
7.05 kB
Created
Weekly downloads
 

Readme

Source

Build Status Maintainability

marquee-ora

A tool to create an ora compatible spinner object that behaves like a scrolling marquee

Install

npm install --save marquee-ora

Usage

This module is to be used in conjunction with ora the elegant terminal spinner.

const ora = require('ora');
const marquee = require('marquee');

const spinner = ora({
  text: 'This is a scrolling marquee',
  spinner: marquee({text: 'This marquee rocks!!'})
});

spinner.start();

setTimeout(() => {
  spinner.stop();
}, 3000);

This gif looks really slow, but the default interval isn't this bad, this is just the gif appearing slow This marquee rocks!! Scrolling

const ora = require('ora');
const marquee = require('marquee');

const spinner = ora({
  text: 'This is a scrolling marquee',
  spinner: marquee({
    text: 'Pause when fully in view',
    fullTextFrames: 15,
    interval: 50
  })
});

spinner.start();

setTimeout(() => {
  spinner.stop();
}, 3000);

Pause on Full Text

Options

text

type: String *required

Required text to be scrolled in the marquee

fill

type: String default=' '

The character to use for the empty space that isn't your text. Defaults to a single space, which looks pretty good.

fullTextFrames

type: Integer default=1

The number of frames to have the full text pause in the marquee. This option isn't valid if the viewWidth is smaller than the text length. (It makes no sense because the full text cant be displayed in this case)

viewWidth

type: Integer default=text.length

The character width for the marquee. If larger than text length, you will get padding of the fill. If smaller than text length, then you won't be able to see the full text at one time.

interval

type: Integer default=100

Number of milliseconds for each "frame" to be active. This is passed directly to ora's interval option

Example using All Options

const ora = require('ora');
const marquee = require('./index');

const spinner = ora({
  text: 'This is a scrolling marquee',
  spinner: marquee({
    text: 'Using lots of options',
    fullTextFrames: 8,
    viewWidth: 29,
    fill: '-',
    interval: 20
  })
});

spinner.start();

setTimeout(() => {
  spinner.stop();
}, 3000);

Using Many Options

Keywords

FAQs

Last updated on 11 Jul 2019

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