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

particalizor-3000

v1.2.1

Published

react library capable of particalizing images; particalize your image right away!

Downloads

34

Readme

particalizor-3000

react library capable of particalizing images; particalize your image right away!

build status coverage status codacy quality status npm version license npm downloads

installation

yarn add particalizor-3000

live demo

components

moving picture

| original | particalized-3000 | |:------------------------------:|:--------------------------------------:| |testImage|particalizedImage|

description

particalizes provided image

settings used to create the example image above

import React from "react";
import { MovingPicture } from "particalizor-3000";
import testImage from "./testImage.png";

export const MovingPictureApp: React.FC<IMovingPictureAppProps> = ({}) => {
  return (
    <MovingPicture
      imageSource={testImage}
      particleNumber={700}
      particleTraceWidth={2}
      particleLifeTime={7000}
      particleVelocity={1.3}
      directionChannel={"saturation"}
      hueChannel={"blue"}
    />
  );
}

api

| property |type|required|default|acceptable values|description | | ----------------- |------|---|---------|--------|--------------------------------------------------------------------------| | imageSource |string|yes| -- | valid image source| source of the image,either imported image (.png, .jpg),either base64 representation (i.e. "data:image/jpeg;base64,/9j/4A..") | | particleNumber |number|no | 7000 | > 0 | number of particles | | particleTraceWidth|number|no | 1 | > 0|width of a particle trace, essentially canvas lineWidth | | particleLifeTime |number|no | 700 | > 0| lifetime of a particle | | particleVelocity |number|no | 1 | > 0| velocity of particles | | directionChannel |string|no | "hue" | "red","green","blue","hue","saturation","light" | enum of {"red","green","blue","hue","saturation","light"}| | hueChannel |string|no | "blue" | "red","green","blue","hue","saturation","light" | enum of {"red","green","blue","hue","saturation","light"}| | reverseDirection |boolean|no| false | true,false | reverse direction | | reverseHue |boolean|no| false | true,false | reverse hue | | randomizeSettings*|boolean|no| false | true,false | randomize properties that are not passed in |

* not available yet

property value falls back to default if provided proprety value is not acceptable

example usage

import React from "react";
import { MovingPicture } from "particalizor-3000";
import testImage from "./testImage.png";

export const MovingPictureApp: React.FC<IMovingPictureAppProps> = ({}) => {
  return (
    <MovingPicture
      imageSource={testImage}
    />
  );
}

or

import React from "react";
import "./App.css";
import { MovingPicture } from "particalizor-3000";
import testImage from "./testImage.png";

function App() {
  return <MovingPicture imageSource={testImage} />;
}

export default App; 

particle vortex

| particalized-3000 | |:------------------------------:| |particalizedImage| |particalizedImage|

description

creates randomized particalized image with vortexes

settings used to create first example image above

import React from "react";
import { ParticleVortex } from "particalizor-3000";

export const ParticleVortexApp: React.FC<IParticleVortexAppProps> = ({}) => {
  return (
    <ParticleVortex
      imageWidth={840}
      imageHeight={384}
      vortexNumber={3}
      particleTraceWidth={600}
      particleNumber={30}
      particleLifeTime={1100}
    />
  );
}

settings used to create second example image above

import React from "react";
import { ParticleVortex } from "particalizor-3000";

export const ParticleVortexApp: React.FC<IParticleVortexAppProps> = ({}) => {
  return (
    <ParticleVortex
      imageWidth={840}
      imageHeight={384}
      vortexNumber={7}
      particleTraceWidth={2}
      particleNumber={2400}
      particleLifeTime={100}
    />
  );
}

api

| property |type|required|default|acceptable values|description | | ----------------- |------|---|---------|--------|----------------------------------------------------------| | vortexNumber |number|no | 7 | > 0 | number of vortexes | | imageWidth |number|no | 400 | > 0 | width of the resulting image | | imageHeight |number|no | 400 | > 0 | height of the resulting image | | particleNumber |number|no | 7000 | > 0 | number of particles | | particleTraceWidth|number|no | 1 | > 0|width of a particle trace, essentially canvas lineWidth | | particleLifeTime |number|no | 700 | > 0| lifetime of a particle | | backgroundColor |string|no | "#777" | valid color string| background color, ie "red", "#333", "#333333" | | randomizeSettings*|boolean|no| false | true,false | randomize properties that are not passed in |

* not available yet

property value falls back to default if provided proprety value is not acceptable

example usage

import React from "react";
import { ParticleVortex } from "particalizor-3000";

export const ParticleVortexApp: React.FC<IParticleVortexAppProps> = ({}) => {
  return (
    <ParticleVortex
      imageWidth={840}
      imageHeight={384}
      vortexNumber={7}
    />
  );
}

or

import React from "react";
import "./App.css";
import { ParticleVortex } from "particalizor-3000";
import testImage from "./testImage.png";

function App() {
  return <ParticleVortex imageWidth={840} imageHeight={384}/>;
}

export default App; 

license

MIT License