
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@furystack/shades-lottie
Advanced tools
Lottie animation player wrapper for FuryStack Shades.
This package provides TypeScript JSX type definitions for the lottie-player web component, allowing you to use Lottie animations in your Shades applications with full type safety.
npm install @furystack/shades-lottie
# or
yarn add @furystack/shades-lottie
You also need to include the lottie-player library in your application. Add it to your HTML:
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
Import the package to register the JSX types, then use the lottie-player element in your components:
import '@furystack/shades-lottie'
import { Shade, createComponent } from '@furystack/shades'
const MyComponent = Shade({
customElementName: 'my-animation',
render: () => (
<lottie-player
src="https://assets.lottiefiles.com/packages/lf20_example.json"
autoplay
loop
style={{ width: '300px', height: '300px' }}
/>
),
})
The lottie-player element accepts the following props:
| Prop | Type | Description |
|---|---|---|
src | string | URL to the Lottie JSON animation file (required) |
autoplay | boolean | Start playing automatically |
loop | boolean | Loop the animation |
controls | boolean | Show playback controls |
speed | number | Playback speed (1 = normal) |
direction | number | Playback direction (1 = forward, -1 = reverse) |
mode | string | Play mode |
hover | boolean | Play on hover |
count | number | Number of times to play |
background | string | Background color |
renderer | 'svg' | 'canvas' | Rendering mode |
style | CSSStyleDeclaration | Inline styles |
onclick | (e: MouseEvent) => void | Click handler |
FAQs
Lottie animation player wrapper for FuryStack Shades
We found that @furystack/shades-lottie demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.