You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

reactlc

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reactlc

A lightweight and customizable React loading component library with TypeScript support

1.3.0
latest
Source
npmnpm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

React Loading Components

A lightweight and customizable React component library for loading indicators and skeleton screens. Built with TypeScript for full type safety and excellent developer experience.

✨ Features

  • 🚀 Lightweight - Minimal bundle size impact
  • 🎨 Customizable - Full control over appearance and behavior
  • 📝 TypeScript - Complete type definitions included
  • Accessible - ARIA labels and screen reader support
  • 🌳 Tree-shakeable - Import only what you need
  • Performance - Optimized animations using CSS

📦 Installation

npm install react-loading-components
yarn add react-loading-components
pnpm add react-loading-components

🚀 Quick Start

import {
  LoadingSpinner,
  PulseLoader,
  Skeleton,
} from "react-loading-components";

function App() {
  return (
    <div>
      {/* Basic spinner */}
      <LoadingSpinner />

      {/* Customized spinner */}
      <LoadingSpinner
        size={50}
        color="#ff6b6b"
        showText={true}
        text="Loading data..."
      />

      {/* Pulse loader */}
      <PulseLoader count={5} color="#10b981" />

      {/* Skeleton placeholder */}
      <Skeleton width="100%" height={24} />
    </div>
  );
}

📖 Components

LoadingSpinner

A classic spinning loading indicator.

<LoadingSpinner
  size={40} // Size in pixels (default: 40)
  color="#3b82f6" // Color (default: "#3b82f6")
  speed={1} // Animation speed in seconds (default: 1)
  thickness={4} // Border thickness (default: 4)
  showText={false} // Show loading text (default: false)
  text="Loading..." // Custom text (default: "Loading...")
  ariaLabel="Loading..." // ARIA label (default: "Loading...")
  className="" // Additional CSS class
/>

PulseLoader

An animated pulse loading indicator with multiple dots.

<PulseLoader
  size={12} // Dot size in pixels (default: 12)
  color="#3b82f6" // Dot color (default: "#3b82f6")
  speed={1.4} // Animation speed in seconds (default: 1.4)
  count={3} // Number of dots (default: 3)
  ariaLabel="Loading..." // ARIA label (default: "Loading...")
  className="" // Additional CSS class
/>

Skeleton

A skeleton placeholder for content loading states.

<Skeleton
  width="100%" // Width (default: "100%")
  height={20} // Height in pixels (default: 20)
  borderRadius={4} // Border radius (default: 4)
  animate={true} // Enable animation (default: true)
  speed={2} // Animation speed in seconds (default: 2)
  className="" // Additional CSS class
/>

🚀 Publishing to NPM

This library is set up for easy publishing to NPM:

  • Build the library: npm run build:lib
  • Update version: npm version patch (or minor/major)
  • Publish: npm publish

The prepublishOnly script ensures the library is built before publishing.

🛠️ Development

# Start development server
npm run dev

# Build the library
npm run build:lib

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:

export default tseslint.config({
  extends: [
    // Remove ...tseslint.configs.recommended and replace with this
    ...tseslint.configs.recommendedTypeChecked,
    // Alternatively, use this for stricter rules
    ...tseslint.configs.strictTypeChecked,
    // Optionally, add this for stylistic rules
    ...tseslint.configs.stylisticTypeChecked,
  ],
  languageOptions: {
    // other options...
    parserOptions: {
      project: ["./tsconfig.node.json", "./tsconfig.app.json"],
      tsconfigRootDir: import.meta.dirname,
    },
  },
});

You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:

// eslint.config.js
import reactX from "eslint-plugin-react-x";
import reactDom from "eslint-plugin-react-dom";

export default tseslint.config({
  plugins: {
    // Add the react-x and react-dom plugins
    "react-x": reactX,
    "react-dom": reactDom,
  },
  rules: {
    // other rules...
    // Enable its recommended typescript rules
    ...reactX.configs["recommended-typescript"].rules,
    ...reactDom.configs.recommended.rules,
  },
});

Keywords

react

FAQs

Package last updated on 29 Jun 2025

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