
Research
/Security News
CanisterWorm: npm Publisher Compromise Deploys Backdoor Across 29+ Packages
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.
@arextest/arex-record-sdk
Advanced tools
This is the official SDK for the Arex Frontend Record API.
This is the official SDK for the Arex Frontend Record API.
npm install @arextest/arex-record-sdk
<script>
(function (w, d, c) {
var s = document.createElement('script');
s.src = c;
s.onload = function () {
new w.AREX_RECORD_SDK({
appId: '<appId>',
tenantCode: '<tenantCode>',
serverUrl: '<serverUrl>'
});
};
d.body.appendChild(s);
})(window, document, 'https://unpkg.com/@arextest/arex-record-sdk');
</script>
import ArexRecordSdk from '@arextest/arex-record-sdk';
new ArexRecordSdk({
appId: '<appId>',
tenantCode: '<tenantCode>',
serverUrl: '<serverUrl>'
});
import ArexRecordSdk from '@arextest/arex-record-sdk';
const skd = new ArexRecordSdk({
appId: '<appId>',
tenantCode: '<tenantCode>',
serverUrl: '<serverUrl>',
timeout: 1000, // interval time for sending data to server, default 5000ms
manual: true, // manual control record start and stop
tags: {
userId: '<userId>',
clientId: '<clientId>',
mobileNo: '<mobileNo>'
},
// other configurations refer to rrweb record documentation https://github.com/rrweb-io/rrweb/blob/master/guide.md#options
maskAllInputs: true
});
// set extra tags, also can be set in skd.record method
skd.setTags({
ext: {
extKey: 'extValue'
}
});
const { stop } = skd.record();
// stop record after 10s
setTimeout(() => {
stop();
console.log('Stop record!');
}, 10000);
pnpm install
pnpm run dev
pnpm run build # build sdk
pnpm run build:demo # build demo project
pnpm run build:dem-cdn # build demo project for cdn usage
pnpm run preview # preview demo project
FAQs
This is the official SDK for the Arex Frontend Record API.
We found that @arextest/arex-record-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.

Research
/Security News
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.

Security News
ENISA’s new package manager advisory outlines the dependency security practices companies will need to demonstrate as the EU’s Cyber Resilience Act begins enforcing software supply chain requirements.