1.3.8 • Published 10 days ago

nudge_core_browser v1.3.8

Weekly downloads
-
License
ISC
Repository
-
Last release
10 days ago

Overview

The Nudge Core Browser Package allows you to integrate the core functionalities provided by Nudge into your Web application. With this package, you can engage your users with interactive experiences. Nudge Core is the required repository which you would need to integrate to start using Nudge's capabilities.

To integrate with Nudge Core, you need to first install the nudge_core_browser package into your project. Find the latest version of nudge_core_browser here.

npm install nudge_core_browser

Once you install the nudge_core_browser package, follow the steps below to complete the integration.

Create a Nudge Account

To get started with the Nudge Package, follow these steps:

  1. Navigate to Nudge's official website to book a demo and get access to Nudge's dashboard.
  2. Create an account on Nudge's Dashboard
  3. In the settings tab you will obtain a unique secret key. Use this secret key while initializing the package.

Usage

After adding the Nudge Core package to your project's dependencies in the package.json file, you need to run the npm install command to fetch the package and make it accessible in your project. This command will download the package and its dependencies, allowing you to import and utilize the Nudge package in your code.

To initialize the Nudge class with a reusable variable name and access all its functions through it, follow these steps:

Import the Nudge package into your JS/TS file:

import { Nudge, NudgeProvider } from 'nudge_core_browser';

Create an instance of the Nudge class with your desired variable name and add:

  • token (required): The secret key obtained from the Nudge website, used for authentication.
var nudge = new Nudge({ apiKey: <API_KEY>});

Step 1: Wrapping the app in NudgeProvider

The <NudgeProvider> is a JSX component that should be wrapped around the main code of your application. It enables integration with the Nudge package and by default requires one parameter: nudge

Parameters

  • nudgeInstance (required): An instance of the Nudge core initialized with your unique token. The Nudge core manages your application's integration with the Nudge platform.
    Example
new NudgeProvider({ nudgeInstance:nudge, plugins:[<PLUGINS>]});

Step 2: Initializing session

Whenever a distinct user ID which is used to identify users at the client's end is defined, call the initSession function to initialize the user session.

  await nudge.initSession({externalId:'CLIENT_IDENTIFIABLE_USER_ID'});

You can also send more user attributes along with the user ID for making segments of audiences.

  await nudge.initSession({externalId:'CLIENT_IDENTIFIABLE_USER_ID',
                  properties:{
                  	"name": "Client User 1",
                  	"age": 27,
                  	"gender": "M",
                  	"country":"US",
                  }});

Step 3: Start Tracking Events

Make sure you have initialized the session before tracking
To track an event, simply call

await nudge.track({type:'EVENT_TYPE'});

You can also add event properties for analytics and .making segments of users based on the properties of their events performed for custom audience experiences.

await nudge.track({type:'EVENT_TYPE',
                  properties: <String, dynamic>{
                  "product": "Fortune Cookies",
                  "quantity": 5,
                  "countryOfExport":"US",
                  }});

That's it!


Nudges

To integrate Nudges from Nudge into Web, you need to make sure that the basic integration of the Nudge Core Browser SDK is done, if you have not already done it, check here.

Please also make sure that you have tagged all the relevant UI components with ids as defined in the above docs.

Our Nudges SDK is not hosted on npm and has to be installed using a private URL setup, please reach out to your Nudge account manager to get access to the Nudges SDK.

 var nudges = new NudgesUi();

Once you have integrated the Nudge Code SDK, just add the above-defined variable to the list in the plugins property of NudgeProvider

new NudgeProvider({nudgeInstance: nudge, plugins: [nudges]});

Our Nudge Core would now trigger Nudges defined on your Dashboard using the nudges plugin.


1.3.8

10 days ago

1.3.7

14 days ago

1.3.6

1 month ago

1.3.5

2 months ago

1.3.4

2 months ago

1.3.3

2 months ago

1.3.2

2 months ago

1.3.1

2 months ago

1.3.0

2 months ago

1.2.9

2 months ago

1.2.8

2 months ago

1.2.7

2 months ago

1.2.6

3 months ago

1.2.5

3 months ago

1.2.4

3 months ago

1.2.3

3 months ago

1.2.2

3 months ago

1.2.1

3 months ago

1.2.0

3 months ago

1.1.9

3 months ago

1.1.8

3 months ago

1.1.7

3 months ago

1.1.6

4 months ago

1.1.5

4 months ago

1.1.4

5 months ago

1.1.3

5 months ago

1.1.2

5 months ago

1.1.1

5 months ago

1.1.0

6 months ago

1.0.33

6 months ago

1.0.32

6 months ago

1.0.31

6 months ago

1.0.30

6 months ago

1.0.29

6 months ago

1.0.28

6 months ago

1.0.27

6 months ago

1.0.26

6 months ago

1.0.25

6 months ago

1.0.24

6 months ago

1.0.23

6 months ago

1.0.22

6 months ago

1.0.21

6 months ago

1.0.20

6 months ago

1.0.19

6 months ago

1.0.18

6 months ago

1.0.17

6 months ago

1.0.16

6 months ago

1.0.15

6 months ago

1.0.14

6 months ago

1.0.12

6 months ago

1.0.11

6 months ago

1.0.10

6 months ago

1.0.9

6 months ago

1.0.8

6 months ago

1.0.7

6 months ago

1.0.6

6 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago