
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@evolv-delivery/emitter
Advanced tools
Adding an integration to the Evolv Manager
The top level key is pages
that contains an array of page matches that events may occur in. Each of these pages contains filters
and events
.
The filters
contains an array of conditionals. Each of these conditionals must be met on a page before the given events are monitor. The conditionals are based on the Evolv audience/context and will be reevaluated when those values are updated.
The events
contains an array containing all possible events that may occur on a given page. Each object in the array needs to contain tag
, activate
, and a optional monitor
.
The tag
is a string that rerpesents the event tag value that is sent to Evolv when the requirements within the activate are met.
The activate
contains an object specifying under what circumstances the event should occur. It contains the following two key value pairs:
page-load
events.The monitor
will be depricated in the future, but it currently requires the following json for non page-load
events:
"monitor": {
"type": "observer",
"selectors":[]
},
The following shows examples of each of the options available.
{"pages": [
{
"filters": [
{
"key": "web.url":
"value": "/products",
},
{
"key": "pageName",
"value": "gridwall"
}
]
"events": [
{
"tag": "gridwall.page-load",
"activate": {
"on": "pageload",
}
},
{
"tag": "gridwall-cta-all",
"monitor": {
"type": "observer",
"selectors":[]
},
"activate": {
"on": "click",
"selector": "[class*='Tile'], [href*='bring-your-own-device']"
}
}
]
}
]
}
FAQs
(Deprecated) Provides mechanism to generate events outside of an experiment
The npm package @evolv-delivery/emitter receives a total of 3 weekly downloads. As such, @evolv-delivery/emitter popularity was classified as not popular.
We found that @evolv-delivery/emitter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.