
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
loading-indicator
Advanced tools
Simple and customizable command line loading indicator
Warning: v2.0.0
is a complete rewrite of the previous implementation.
$ npm install loading-indicator --save
import loading from 'loading-indicator';
// Initialize the loading animation and saves the timer id
const timer = loading.start();
// 1500ms later, stop the loading animation passing along the timer id
setTimeout(() => {
loading.stop(timer);
}, 1500);
import loading from 'loading-indicator';
// Import available presets
import presets from 'loading-indicator/presets';
// Use an available preset (or simply provides an array with your custom preset)
const timer = loading.start(null, {
frames: presets.arrows
});
import loading from 'loading-indicator';
// Setup a custom loading text
const timer = loading.start('Loading...');
loading.start([text], [options])
Returns a number
with the id that is used to reset the render interval (later referenced as timer).
text
Type: string
Default: null
Text do append to the indicator symbol.
options
Type: object
Available options.
options.delay
Type: number
(milliseconds)
Default: 100
Delay for the render to be triggered.
options.frames
Type: array
Default: presets.spinner
Frames for the loading animation sequence.
Available presets are:
loading.stop(timer, [shouldKeepOutput])
timer
Required
Type: number
(integer)
Id of the render function interval.
shouldKeepOutput
Type: boolean
Default: false
Whether or not to keep the output when loading.stop()
is called.
MIT :copyright: Rafael Rinaldi
FAQs
Simple and customizable command line idle status indicator
We found that loading-indicator 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.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.