
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@the-node-forge/loader-kit
Advanced tools
Loader-Kit is a lightweight, customizable JavaScript library designed to add beautiful loading indicators to your web applications. Featuring multiple loader types—including spinners, progress bars, and dot loaders—Loader-Kit leverages vanilla JavaScript
A lightweight, customizable loader library for JavaScript/TypeScript applications. Loader Kit provides beautiful and dynamic loading indicators—including spinners, progress bars, and dot loaders—with smooth CSS animations to enhance user experience during asynchronous operations.
Spinner
, ProgressBar
, and Dots
for dead-simple
usage.npm install @the-node-forge/loader-kit
or using Yarn:
yarn add @the-node-forge/loader-kit
import { Spinner, ProgressBar, Dots } from '@the-node-forge/loader-kit';
// Show a spinner
Spinner.show();
setTimeout(() => Spinner.hide(), 2000);
// Show a progress bar
ProgressBar.start('#progress-bar');
ProgressBar.set(50);
ProgressBar.complete();
// Show dot loader
Dots.show();
Dots.hide();
Spinner.show(container?: HTMLElement, options?: {
color?: string;
size?: number;
position?: 'inline' | 'centered' | 'overlay';
style?: Partial<CSSStyleDeclaration>;
})
Spinner.hide()
ProgressBar.start(container: HTMLElement | string, options?: {
color?: string;
size?: number;
style?: Partial<CSSStyleDeclaration>;
})
ProgressBar.set(percent: number)
ProgressBar.complete()
Dots.show(container?: HTMLElement, options?: {
color?: string;
position?: 'inline' | 'centered' | 'overlay';
style?: Partial<CSSStyleDeclaration>;
})
Dots.hide()
We welcome contributions! Feel free to open an issue or submit a pull request.
If you find Loader Kit helpful, give it a ⭐ on GitHub.
FAQs
Loader-Kit is a lightweight, customizable JavaScript library designed to add beautiful loading indicators to your web applications. Featuring multiple loader types—including spinners, progress bars, and dot loaders—Loader-Kit leverages vanilla JavaScript
The npm package @the-node-forge/loader-kit receives a total of 1 weekly downloads. As such, @the-node-forge/loader-kit popularity was classified as not popular.
We found that @the-node-forge/loader-kit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.