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.
emarsys-integration-client
Advanced tools
Emarsys Integration Client JS is a library providing methods of communication between Emarsys and integrated services running in an iframe.
npm install emarsys-integration-client --save
const { integrationClient } = require('emarsys-integration-client');
const result = await itegrationClient.getUrl({ target: 'email_analysis/list' });
const href = result.data.url;
Earlier versions of this package required you to create an instance with custom config.
Most methods now work without this, but if you are using messageToService
explicitly,
you might still need to instantiate like this:
var IntegrationClient = require('emarsys-integration-client');
var integrationClient = IntegrationClient.init({
global: window,
integrationId: 'my-integration',
integrationInstanceId: 1234567
});
In the code above, integrationId and integrationInstanceId should have the values passed in the iframe URL.
Calling the methods above will render different types of Emarsys UI alerts with the text
given.
It's a lower level method for displaying custom alerts.
Options
Field | Role | Mandatory | Default |
---|---|---|---|
text: String | Alert message. | YES | |
icon: String | Icon class of the icon to be rendered on the left side of the alert. Eg. 'check' for a check mark or 'exclamation-circle' for an exclamation mark in a circle. | NO | |
className: String | Alert sub-class to use when rendering the alert. Eg. 'e-alert-success' for a green bar, 'e-alert-danger' for a red one. | NO | |
timeout: Int | Amount of time after the alert will fade out and get removed from the DOM, in milliseconds. | NO | 1500 |
This will enable a button selected.
Closing the dialog and removing it from DOM.
Rendering a confirm dialog.
Options
Field | Role | Mandatory | Default |
---|---|---|---|
title: String | Title of the confirm dialog. | YES | |
body: String | Body text of the confirm dialog. | NO | |
cancel: String | Text of Cancel button. | YES | |
ok: String | Text of OK button. | YES |
Rendering a modal dialog with it's content in an iframe.
Options
Field | Role | Mandatory | Default |
---|---|---|---|
src: String | URL for the iframe providing the modal content. | YES | |
width: Int | Width of the modal. | NO | 650 |
height: Int | Height of the modal. | NO | 500 |
Submitting a dialog.
Options
Field | Role | Mandatory | Default |
---|---|---|---|
success: Boolean | True if the result of the dialog is truthy. | YES | |
data: Object | Arbitrary object to send to the originating service. | NO | {} |
Returns the url of a preset page. Available targets
Options
Field | Role | Mandatory |
---|---|---|
target: String | The prespecified target you would like a link to. | YES |
params.foo: Object | The general param the actual target needs. | MIXED |
Navigating the browser to a preset page. Available targets
Options
Field | Role | Mandatory |
---|---|---|
target: String | The prespecified target you would like to head to. | YES |
params.foo: Object | The general param the actual target needs. | MIXED |
Reloading the whole page.
Resizing the iframe.
Sending a track message.
Setting up click handler for <a>
elements, popping a navigation confirm dialog when clicked. It makes sense to call this method right after your content gets dirty.
Options
Field | Role | Mandatory | Default |
---|---|---|---|
selector: String | Selector for ancestor elements of <a> elements. | YES | |
confirm: Object | Options for confirm dialog. See dialog.confirm() . | NO | Options for a general unload confirm dialog. |
Stopping to watch click events of elements selected by selector
. It makes sense to call this method right after your content gets clean (ie. saved).
See Code of Conduct here.
FAQs
Client library for Emarsys services.
The npm package emarsys-integration-client receives a total of 0 weekly downloads. As such, emarsys-integration-client popularity was classified as not popular.
We found that emarsys-integration-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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.
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.