Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
vue-sharelinks
Advanced tools
Make links to share the current page on social media sites using Vue.
Add social media sharing links to your page with a simple Vue component.
import VueSharelinks from 'vue-sharelinks';
new Vue({
components: {VueSharelinks},
});
<vue-sharelinks></vue-sharelinks>
url
The URL that will be shared. Defaults to window.location.href
.
title
The title of the page being shared. Defaults to window.title
.
image
An URL to an image preview of the URL being shared. Optional. Only used on pinterest.
platforms
An array of platform names to show. Default: all platforms will be displayed. Platforms specified in extra-platforms
will always be shown.
extra-platforms
An array of platform definitions. Default: []
. E.g.:
{
name: 'facebook',
href: 'https://www.facebook.com/sharer/sharer.php?u=%URL%',
width: 400,
height: 500
},
share-link-clicked(platform, url)
Fired when a share link is clicked.
By default the links will contain the name of the platform. You can override these by providing a slot with the name of the platform.
<vue-sharelinks>
<slot name="facebook">
<img src="facebook.jpg" alt="Facebook">
</slot>
</vue-sharelinks>
You can insert extra content at the start or end of the list.
<vue-sharelinks>
<slot name="before">
Here is a list of social links
</slot>
<slot name="after">
There was a list of social links
</slot>
</vue-sharelinks>
FAQs
Make links to share the current page on social media sites using Vue.
The npm package vue-sharelinks receives a total of 0 weekly downloads. As such, vue-sharelinks popularity was classified as not popular.
We found that vue-sharelinks 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.