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-facebook-pixel
Advanced tools
A small wrapper around fbq. This package integrates Facebook pixel into your Vue
app.
npm install vue-facebook-pixel
Also, this library requires installing Facebook Pixel API.
import Vue from 'Vue'
import VueFacebookPixel from 'vue-facebook-pixel'
Vue.use(VueFacebookPixel)
To start using this script you will have to call init(...)
first.
/**
* Init facebook tracking pixel
* @param {String} appId
* @param {object} [data={}]
*/
Vue.analytics.fbq.init('YOUR_FACEBOOK_CODE', {
em: 'user@mail.com'
})
Make sure init(...)
is called only once.
Then you will have full access to the event(...)
method.
/**
* Event tracking
* @param {String} name
* @param {object} [data={}]
*/
Vue.analytics.fbq.event('ViewContent', {
content_name: 'Really Fast Running Shoes'
})
All component
instances can call this.$analytics.fbq
All vue-analytics-*
share the same analytics
object, where all the providers are stored.
Facebook Pixel API is required to be installed. You can skip the default window.fbq('init', 'KEY')
part and use Vue.analytics.fbq.init(...)
which will do the same.
FAQs
A Facebook Pixel API wrapper
The npm package vue-facebook-pixel receives a total of 111 weekly downloads. As such, vue-facebook-pixel popularity was classified as not popular.
We found that vue-facebook-pixel 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.