
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
react-canvas-confetti
Advanced tools
The React component for canvas-confetti library. In the demo version, you can play with the settings and see examples.
npm i react-canvas-confetti
:exclamation: It is expected that the react is already installed as peer dependency.
I recommend that you first familiarize yourself with the canvas-confetti library to better understand exactly how this module works.
There are two ways to use this module:
A preset is an animation template that is already ready to use. Presets allow you to customize animation settings, but do not allow you to change the animation algorithm. Using presets is an easier way to work with the module.
import Fireworks from "react-canvas-confetti/dist/presets/fireworks";
function Example() {
return <Fireworks autorun={{ speed: 3 }} />;
}
export default Example;
The preset working can be controlled manually using the Conductor instance
. This object allows you to start and stop animations on demand. Conductor can be accessed in the onInit
callback. The interface of the object is shown below:
type TRunAnimationParams = {
speed: number;
duration?: number;
delay?: number;
};
type TConductorInstance = {
run: (params: TRunAnimationParams) => void;
shoot: () => void;
pause: () => void;
stop: () => void;
};
Working with an instance is working with the module at a lower level. This is a more powerful approach that allows you to create your own animation algorithms, but requires more effort.
Confetti object, which will be received as a result of calling the function create. Gives you full control to create your own animations. Confetti can be accessed in the onInit
callback. The interface can be viewed here
The common settings are relevant for all use cases
Name | Type | Description |
---|---|---|
width | string | number | value is responsible for the width of the canvas. Alternative ways to control canvas sizes are className and style props. |
height | string | number | value is responsible for the height of the canvas. Alternative ways to control canvas sizes are className and style props. |
className | string | value to set className to canvas element |
style | CSSProperties | value to set style to canvas element. If style and className are not passed, the default styles will be set |
globalOptions | TGlobalOptions | global animation settings that cannot be changed after initialization (details) |
onInit | (params: {confetti: TCanvasConfettiInstance}) => void | the callback is called when the component is mounted on the page and allows you to access confetti instance (details) for manual animation creation |
Advanced settings only work for presets!
Name | Type | Description |
---|---|---|
autorun | { speed: number; duration?: number; delay?: number; } | if it is passed, it automatically starts the animation when mounting the component on the page |
decorateOptions | (options: TOptions) => TOptions | the callback allows you to customize the animation settings and is called for each step of the animation |
onInit | (params: { confetti: TCanvasConfettiInstance; conductor: TConductorInstance }) => void | the callback is called when the component is mounted on the page and allows you to access objects for manual creation and animation control |
FAQs
React component for canvas-confetti library
The npm package react-canvas-confetti receives a total of 67,909 weekly downloads. As such, react-canvas-confetti popularity was classified as popular.
We found that react-canvas-confetti demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.