@rudderstack/analytics-js
TypeScript icon, indicating that this package has built-in type declarations

3.1.0 • Public • Published

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:

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 3.1.0
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 3.1.0
    0
  • 3.0.4
    2,803
  • 3.0.3
    2,925
  • 3.0.1
    296

Package Sidebar

Install

npm i @rudderstack/analytics-js

Weekly Downloads

15,638

Version

3.1.0

License

MIT

Unpacked Size

4.12 MB

Total Files

17

Last publish

Collaborators

  • abhishekpandey
  • moumitamandal
  • rudderstack-admin
  • saikumarrs