Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@sprig-technologies/sprig-browser

UserLeap157.8kSee LICENSE file2.33.1TypeScript support: included

npm package for the sprig web sdk

product, user-research

readme

Install with NPM/Yarn

Use the following shell command to install the Sprig SDK. We recommend you update the package regularly for improved functionality and bug fixes. With this installation method, Sprig will be bundled with the rest of your frontend application and be immediately accessible upon page load.

npm install --save @sprig/sprig-browser

Then, in your application, initialize Sprig with your ENVIRONMENT_ID:

import sprig from '@sprig/sprig-browser';
// or with require() syntax:
// const sprig = require('@sprig/sprig-browser');

export const Sprig = sprig.configure({
  environmentId: 'ENVIRONMENT_ID',
}