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 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-tag-cloud

v1.3.3

Published

Create beautiful tag/word clouds using React

Downloads

2,892

Readme

THIS REPOSITORY IS NO LONGER MAINTAINED

Looking for an alternative? Please have a look at react-tagcloud.

If you are interested in maintaining this repository (and taking ownership of it), please reach out to me here.

react-tag-cloud ☁️

Create beautiful tag/word clouds using React. Uses the wonderful d3-cloud under the hood.

react-tag-cloud-image

View live demo here (edit code)

Installation

npm install react-tag-cloud
or
yarn add react-tag-cloud

Usage

import TagCloud from 'react-tag-cloud';
import randomColor from 'randomcolor';

class MyCloud extends Component {
  render() {
    return (
      <TagCloud 
        style={{
          fontFamily: 'sans-serif',
          fontSize: 30,
          fontWeight: 'bold',
          fontStyle: 'italic',
          color: () => randomColor(),
          padding: 5,
          width: '100%',
          height: '100%'
        }}>
        <div style={{fontSize: 50}}>react</div>
        <div style={{color: 'green'}}>tag</div>
        <div rotate={90}>cloud</div>
        ...
      </TagCloud>
    );
  }
}

Documentation

<TagCloud> props:

name | description | type | default -----|-------------|------|--------- style.fontSize | Font size needed for calculating layout | Function/Number | 20 style.fontFamily | Font family needed for calculating layout | Function/String | serif style.fontWeight | Font weight needed for calculating layout | Function/Number | normal style.fontStyle | Font style needed for calculating layout | Function/String | normal style.padding | Padding between tags (px) | Function/Number | 1 style.color | Color to be used by tags | Function/String | (none) rotate | Rotation in degrees | Function/Number | 0 spiral | Spiral | Function/String | archimedean random | Randomizer function | Function | Math.random

Any component can be used as a child component. TagCloud scans the child components for the following props for its layout calculation:

name | description | type | default -----|-------------|------|--------- style.fontSize | Font size needed for calculating layout | Function/Number | 20 style.fontFamily | Font family needed for calculating layout | Function/String | serif style.fontWeight | Font weight needed for calculating layout | Function/Number | normal style.fontStyle | Font style needed for calculating layout | Function/String | normal style.padding | Padding between tags (px) | Function/Number | 1 style.color | Color to be used by tag | Function/String | (none) rotate | Rotation in degrees | Function/Number | 0

Examples

Resources

License

MIT

Cool?

Do you think this cool and useful? Consider buying me a coffee!