npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

Iโ€™ve always been into building performant and accessible sites, but lately Iโ€™ve been taking it extremely seriously. So much so that Iโ€™ve been building a tool to help me optimize and monitor the sites that I build to make sure that Iโ€™m making an attempt to offer the best experience to those who visit them. If youโ€™re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, ๐Ÿ‘‹, Iโ€™m Ryan Hefnerย  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If youโ€™re interested in other things Iโ€™m working on, follow me on Twitter or check out the open source projects Iโ€™ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soonโ€“ish.

Open Software & Tools

This site wouldnโ€™t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you ๐Ÿ™

ยฉ 2025 โ€“ย Pkg Stats / Ryan Hefner

react-spectrum

v1.3.0

Published

Generate colorful text placeholders ๐ŸŽจ

Readme

React Spectrum

A tiny(around 1.3kb gzip) React library to generate colorful text placeholders ๐ŸŽจ

Inspired by this code illustration on CodeSandbox homepage ๐Ÿ™

Try out the generator at react-spectrum.netlify.com ๐ŸŽŠ Also, check out @BotSpectrum twitter bot that tweets randomly generated colorful text placeholders for inspiration ๐ŸŽŠ

MIT Licence Open Source Love Build Status npm version GitHub version Greenkeeper badge

Demo

Table of Contents

Install

NPM

npm install react-spectrum

Yarn

yarn add react-spectrum

UMD build

<script src="https://unpkg.com/react-spectrum/dist/react-spectrum.umd.js"></script>

Usage

import React from "react";
// Import library
import Spectrum from "react-spectrum";
// or const Spectrum = require('react-spectrum');

// Render the placeholder
function Placeholder() {
  return (
    <Spectrum
      width={500}
      colors={["#757575", "#999999", "#0871F2", "#BF5AF2"]}
    />
  );
}

Props

| Property | Type | Default | Description | | ------------------- | --------------- | ----------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | | width | number | 500 | Width of the placeholder container | | colors | Array<string> | ['#eee'] | Possible colors of words, will be picked randomly | | wordWidths | Array<number> | [30, 60, 90, 120, 150] | Possible widths of words, will be picked randomly | | wordDistances | Array<number> | [4, 8, 12] | Possible distance between words, will be picked randomly | | wordHeight | number | 12 | Height of every word placeholder | | wordRadius | number | 20 | Border radius of every word | | lineDistance | number | 12 | Distance(margin) between the lines | | linesPerParagraph | number | 8 | Lines per paragraph. if there are multiple paragraphs, all of them will have same number of lines | | paragraphs | number | 1 | Number of paragraphs in the placeholder | | paragraphDistance | number | 24 | Distance(margin) between the paragraphs | | truncateLastLine | boolean | true | Show less words in the last line for more natural feel | | renderWord | function | ({ key, style}) => <span key={key} style={style} /> | Render word with customizations(avoid overriding passed style properties. it might break the functionality) |

Contribute

Thanks for taking the time to contribute, please check out the src to understand how things work.

Reporting Issues

Found a problem? Want a new feature? First of all, see if your issue or idea has already been reported. If don't, just open a new clear and descriptive issue.

Submitting pull requests

Pull requests are the greatest contributions, so be sure they are focused in scope and do avoid unrelated commits.

  • Fork it!
  • Clone your fork: git clone https://github.com/<your-username>/react-spectrum
  • Navigate to the newly cloned directory: cd react-spectrum
  • Create a new branch for the new feature: git checkout -b my-new-feature
  • Install the tools necessary for development: yarn
  • Make your changes.
  • Commit your changes: git commit -am 'Add some feature'
  • Push to the branch: git push origin my-new-feature
  • Submit a pull request with full remarks documenting your changes

License

MIT License ยฉ Ganapati V S