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

firefly-react

v22.5.0

Published

A react component to bring interactive fireflies animation on websites

Downloads

9

Readme

screen-capture (20)

LIVE Playgorund

https://codesandbox.io/s/example-firefly-react-forked-9gsye?file=/src/App.js

USAGE :

npm i firefly-react

Import it into your React Project

import Firefly from "firefly-react";

in app.js ( 1 line code and done 😎) :



   <Firefly
      canvasWidth={200}  // you can choose any positive width suitable for your purpose
      canvasHeight={300} // you can choose any positive height suitable for your purpose
   />

Customizations

Colors

One can add an Array of colors and the fireflies thus generated will get its color(can be hex-code or in rbga format) from this array in a random fashion :

const colors = ["Blue ", "Green", "Red", "Orange"];


   <Firefly
      canvasWidth={200}  // you can choose any positive width suitable for your purpose
      canvasHeight={300} // you can choose any positive height suitable for your purpose
      colors={colors}
   />

Responsive

To make the canvas screen responsive, update the height and width of the canvas using canvasHeight and canvaswidth props. Here is an example using react-hooks.

const [canvasHeight, setCanvasHeight] = useState(window.innerHeight);
const [canvasWidth, setCanvasWidth] = useState(window.innerWidth);

window.addEventListener(
   "resize",
   (e) => {
   setCanvasHeight(window.innerHeight);
   setCanvasWidth(window.innerWidth);
   },
   false
);



   <Firefly
      canvasWidth={canvasWidth} 
      canvasHeight={canvasHeight} 
   />


Css styling

Use className prop to assign an className to the component and apply any custom css accordingly.

  <Firefly
      className='firefly-react-example-classname' 
   />
.firefly-react-example-classname{
  position: absolute;
  top: 0;
  left: 0;
  z-index:1
}

Props :

| Props | Value | default | description | | ------------------------ | --------------------- | ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | | canvasWidth | [0,SAFE-INT] | HMTL CANVAS DEFAULT | sets width of the canvas | | canvasHeight | [0-SAFE_INT] | HMTL CANVAS DEFAULT | sets the height of the canvas | | colors | [ ] | [ "#f15bb5","#f72585"] | fireflies thus generated will be randomly alloted the colors from this array | |className | string | "" | add a className to the canvas element |

Want to Contribute ?

Contributing to Open source is self rewarding and i love being part of it , if you too are excited about it , i would love to collaborate ♥️ . Currently we need help with :

  • Using multithreading concepts to boost our canvas rendering
  • particle pooling and hence performance optimization
  • I do believe this project has immense potential to offer some good out there , so any proposal for new feature addition would be highly appreciated .
  • Strong type checking and dynamic object validation would also make this library robust

Quote

To learn and not to do is really not to learn. To know and not to do is really not to know.