Gathering detailed insights and metrics for lottie-player-vue
Gathering detailed insights and metrics for lottie-player-vue
Gathering detailed insights and metrics for lottie-player-vue
Gathering detailed insights and metrics for lottie-player-vue
npm install lottie-player-vue
Typescript
Module System
Node Version
NPM Version
Vue (63.94%)
JavaScript (36.06%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
25 Stars
44 Commits
5 Forks
4 Watchers
24 Branches
3 Contributors
Updated on Oct 03, 2024
Latest Version
0.0.16
Package Id
lottie-player-vue@0.0.16
Unpacked Size
2.87 MB
Size
768.71 kB
File Count
14
NPM Version
6.14.6
Node Version
10.22.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
A vue wrapper for @lottiefiles/lottie-player. It makes it simple to include beautiful animations in your web apps using https://lottiefiles.com.
It is published on npm at: https://www.npmjs.com/package/lottie-player-vue
Install lottie-player-vue:
1npm install --save lottie-player-vue
Include in it either globally (in main.js
) or a Vue component.
Global:
1// main.js 2// ... 3import LottiePlayer from 'lottie-player-vue'; 4 5Vue.use(LottiePlayer); 6// ...
Component:
1// MyComponent.vue 2// ... 3import LottiePlayer from 'lottie-player-vue'; 4 5export default { 6 components: { 7 LottiePlayer 8 }, 9// ...
And then add it to your template:
1<div> 2 <lottie-player :src="animationJSON"/> 3</div>
Customisation of the tree is configured with the following properties:
Name | Default | Description |
---|---|---|
src | required | JSON animation, from http://lottiefiles.com |
options | {} | documented below / https://www.npmjs.com/package/@lottiefiles/lottie-player#properties |
The options object matches the properties found in the offical lottiefiles documentation exactly with the addition that we also support the width
and height
keys. These will be mapped directly to the width
and height
properties of the animation HTML element.
e.g.
1// options 2{ 3 autoplay: true, 4 speed: 2.5, 5 width: '100px' 6}
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
Found 1/25 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
107 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More