Skip to main content

Installation

πŸ“¦ Installation​

You can install Loader Kit using npm or yarn:

npm install @the-node-forge/loader-kit

or

yarn add @the-node-forge/loader-kit

βœ… Requirements​

  • Node.js 16 or higher
  • A modern frontend project (React, Vue, vanilla JS, etc.)

🧠 Quick Note​

Loader Kit comes with zero dependencies, built-in styles, and helper utilities for:

  • Spinner.show() / Spinner.hide()
  • ProgressBar.start() / .set() / .complete()
  • Dots.show() / Dots.hide()

No setup or styling neededβ€”just import and go!

import { Spinner } from '@the-node-forge/loader-kit';

Spinner.show(); // start loading
Spinner.hide(); // stop loading