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: