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

@bytec.in/lottie-player

v1.0.2

Published

A simple and easy-to-use React component for integrating Lottie animations into your React projects. This wrapper abstracts away the complexity of using Lottie animations, allowing you to quickly and efficiently add animations to your web applications.

Downloads

16

Readme

LottiePlayer

A simple and easy-to-use React component for integrating Lottie animations into your React projects. This wrapper abstracts away the complexity of using Lottie animations, allowing you to quickly and efficiently add animations to your web applications.

Features

  • Supports easy integration of Lottie animations in React projects.
  • Simple API for configuration.
  • Supports looping, autoplay, and custom styling.
  • Lightweight and optimized for performance.

Installation

To use the @bytec.in/lottie-player package in your project, you can install it via npm:

npm install @bytec.in/lottie-player

Usage

Here's a basic example of how to use the LottiePlayer in your React project:

  1. Import the Component: First, import the LottiePlayer component into your React component.

  2. Pass the Required Props: Use the component and pass the Lottie animation JSON file as a prop.

import React from "react";
import LottiePlayer from "@bytec.in/lottie-player";
import animationData from "./path/to/your/animation.json"; // Adjust the path to your animation JSON file

const App = () => (
	<div>
		<h1>Lottie Animation Example</h1>
		<LottiePlayer animationData={animationData} loop={true} autoplay={true} style={{ width: 300, height: 300 }} />
	</div>
);

export default App;

Props

  • animationData (required): The Lottie animation data in JSON format. This is required for the component to render the animation.
  • loop (optional): A boolean value that specifies whether the animation should loop. Default is true.
  • autoplay (optional): A boolean value that specifies whether the animation should start playing automatically. Default is true.
  • style (optional): An object specifying custom CSS styles to apply to the animation container. Default is {}.

Example

import React from "react";
import LottiePlayer from "@bytec.in/lottie-player";
import animationData from "./animations/sample-animation.json";

const App = () => (
	<div>
		<h1>My Lottie Animation</h1>
		<LottiePlayer animationData={animationData} loop={false} autoplay={true} style={{ width: "100%", maxWidth: 500, height: 400 }} />
	</div>
);

export default App;

Development

If you want to contribute or modify this package, follow these steps:

  1. Clone the repository:

    git clone https://github.com/bytecrafters-in/lottie-player.git
    cd lottie-player
  2. Install the dependencies:

    npm install
  3. Build the package:

    npm run build
  4. Link the package to use it locally in another project:

    npm link

    Then in your project:

    npm link @bytec.in/lottie-player

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Contributions

Contributions are welcome! Feel free to open issues or submit pull requests to improve the package.

Acknowledgements

  • Lottie for providing the animations framework.
  • Lottie-React for seamless integration of Lottie animations in React applications.

Support

If you encounter any issues or have questions, please open an issue on GitHub or contact me directly.