Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
light-modal-vue
Advanced tools
Light modal component for Vue, based on the Modal Component Example and added some features like:
Get the package:
npm install light-modal-vue
Register LightModal in your app entrypoint:
import Vue from 'vue'
import LightModal from 'light-modal-vue';
Vue.component('modal', LightModal);
In your HTML call it like
<modal
v-show = "show_modal"
title = "Title"
intro = "intro_class"
outro = "outro_class"
@close = "close_method">
<!-- HEADER -->
<div slot = "modal-header">
the header slot is optional
</div>
<!-- BODY -->
<div slot = "modal-body">
this is the body
</div>
<!-- FOOTER -->
<div slot = "modal-footer">
this is the footer
</div>
</modal>
in this case the variable "show_modal" is controlling when the modal appears, intro it's the class associated when the modal show, and outro when the modal hide, close_method it's the callback for the close event.
Get Animate.css:
npm install animate.css
Import animate.css in your app
import 'animate.css/animate.min.css';
use it with LightModal
<modal
v-show = "show"
title = "Title"
intro = "bounceIn"
outro = "bounceOut"
@close = "close">
</modal>
MIT
This project is in an early stage of development. Any contribution is welcome :D
FAQs
A Light Modal for Vue 2
The npm package light-modal-vue receives a total of 0 weekly downloads. As such, light-modal-vue popularity was classified as not popular.
We found that light-modal-vue 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 malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.