Socket
Socket
Sign inDemoInstall

iureiure

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iureiure

Monorepo accommodating Rudderstack Analytics JS SDK


Version published
Weekly downloads
91
decreased by-10.78%
Maintainers
1
Weekly downloads
 
Created
Source

Release TypeScript npm bundle size (scoped) npm

RudderStack
The Customer Data Platform for Developers

Website · Documentation · Community Slack


@rudderstack/analytics-js

RudderStack Javascript SDK for browsers.

For detailed documentation on the RudderStack JavaScript SDK, click here.

Table of Contents

Installing the package

To install the package via npm, run the following command:

npm install @rudderstack/analytics-js --save

Note that this NPM module is only meant to be used for a browser installation. If you want to integrate RudderStack with your Node.js application, refer to the RudderStack Node.js repository.

Available exports

Default export will fetch the plugins during runtime as federated modules in separate requests.

import { RudderAnalytics } from '@rudderstack/analytics-js';

const analytics = new RudderAnalytics();
analytics.load(<WRITE_KEY>, <DATA_PLANE_URL>);
window.rudderanalytics = analytics;

Bundled export will contain the plugins code as part of the bundle in build time.

import { RudderAnalytics } from '@rudderstack/analytics-js/bundled';

const analytics = new RudderAnalytics();
analytics.load(<WRITE_KEY>, <DATA_PLANE_URL>);
window.rudderanalytics = analytics;

Legacy export will contain the plugins code as part of the bundle in build time and support legacy browsers like IE11.

import { RudderAnalytics } from '@rudderstack/analytics-js/legacy';

const analytics = new RudderAnalytics();
analytics.load(<WRITE_KEY>, <DATA_PLANE_URL>);
window.rudderanalytics = analytics;

How to build the SDK

Look for run scripts in the package.json file for getting the browser minified and non-minified builds. The builds are updated in the dist folder of the directory. Among the others, some of the important ones are:

  • npm run build:browser:modern: This outputs dist/cdn/modern folder that contains the cdn package contents.
  • npm run build:npm: This outputs dist/npm folder that contains the npm package contents.

Usage in Chrome Extensions

RudderStack JS SDK can be used in Chrome Extensions with manifest v3, both as a content script (via the JavaScript SDK package) or as a background script service worker (via the service worker package).

For examples and specific details look into Chrome Extensions Usage

Usage in Serverless Runtimes

RudderStack JS SDK service worker can be used in serverless runtimes like Cloudflare Workers or Vercel Edge functions.

For examples and specific details look into:

FAQs

Package last updated on 02 Apr 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc