🍱 Simple, powerful analytics for Node.JS projects!
Track events, update data, record LTV and more in Node.JS. Data is stored in your Bento account so you can easily research and investigate what's going on.
👋 To get personalized support, please tweet @bento or email jesse@bentonow.com!
🐶 Battle-tested by NativShark Bento Production (a Bento customer)!
❤️ Thank you @HelloKashif from IPInfo for your contribution. ❤️ Thank you @jonsherrard from Devular for your contribution.
- Installation
- Get Started
- Modules
- Analytics (Base Module)
- tagSubscriber(parameters: TagSubscriberParameters): Promise<boolean>
- addSubscriber(parameters: AddSubscriberParameters): Promise<boolean>
- removeSubscriber(parameters: RemoveSubscriberParameters): Promise<boolean>
- updateFields(parameters: UpdateFieldsParameters<S>): Promise<boolean>
- track(parameters: TrackParameters<S, E>): Promise
- trackPurchase(parameters: TrackPurchaseParameters): Promise<boolean>
- Batch
- Commands
- .addTag(parameters: AddTagParameters): Promise<Subscriber<S> | null>
- .removeTag(parameters: RemoveTagParameters): Promise<Subscriber<S> | null>
- .addField(parameters: AddFieldParameters<S>): Promise<Subscriber<S> | null>
- .removeField(parameters: RemoveFieldParameters<S>): Promise<Subscriber<S> | null>
- .subscribe(parameters: SubscribeParameters): Promise<Subscriber<S> | null>
- .unsubscribe(parameters: UnsubscribeParameters): Promise<Subscriber<S> | null>
- Experimental
- Fields
- Forms
- Subscribers
- Tags
- Analytics (Base Module)
- Types Reference
- TypeScript
- Things to Know
- Contributing
- License
Run the following command in your project folder.
npm install @bentonow/bento-node-sdk --save
To get started with tracking your users in Bento, simply initialize the client and go wild.
The below example showcases using track
and trackPurchase
which are the two recommended functions you should lean on as they can trigger automations. If you need to upload a lot of data but do not wish to trigger automations, like when you sign up, then use importSubscribers instead.
import { Analytics } from '@bentonow/bento-node-sdk';
const bento = new Analytics({
authentication: {
publishableKey: 'publishableKey',
secretKey: 'secretKey',
},
logErrors: false, // Set to true to see the HTTP errors logged
siteUuid: 'siteUuid',
});
bento.V1.track({
email: 'test@bentonow.com',
type: '$formSubmitted',
fields: {
first_name: 'Test',
last_name: 'Test',
},
details: {
fromCustomEvent: true,
},
}).then(result => console.log(result)).catch(error => console.error(error));
bento.V1.trackPurchase({
email: 'test@bentonow.com',
purchaseDetails: {
unique: { key: 1234 }, // this key stops duplicate order values being tracked
value: { amount: 100, currency: 'USD' },
},
cart: {
abandoned_checkout_url: 'https://example.com',
},
});
Read on to see what all you can do with the SDK.
In addition to the top-level Analytics object, we also provide access to other parts of the API behind their corresponding modules. You can access these off of the main Analytics
object.
The Analytics
module also provides access to various versions of the API (currently just V1
), and each of those provides access to the corresponding modules documented below.
This TRIGGERS automations! - If you do not wish to trigger automations, please use the Commands.addTag
method.
Tags a subscriber with the specified email and tag. If either the tag or the user do not exist, they will be created in the system. If the user already has the tag, another tag event will be sent, triggering any automations that take place upon a tag being added to a subscriber. Please be aware of the potential consequences.
Because this method uses the batch API, the tag may take between 1 and 3 minutes to appear in the system.
Returns true
if the event was successfully dispatched. Returns false
otherwise.
Reference Types: TagSubscriberParameters
bento.V1.tagSubscriber({
email: 'test@bentonow.com',
tagName: 'Test Tag',
})
.then(result => console.log(result))
.catch(error => console.error(error));
This TRIGGERS automations! - If you do not wish to trigger automations, please use the Commands.subscribe
method.
Creates a subscriber in the system. If the subscriber already exists, another subscribe event will be sent, triggering any automations that take place upon subscription. Please be aware of the potential consequences.
You may optionally pass any fields that you wish to be set on the subscriber during creation.
Because this method uses the batch API, the tag may take between 1 and 3 minutes to appear in the system.
Returns true
if the event was successfully dispatched. Returns false
otherwise.
Reference Types: AddSubscriberParameters<S>
bento.V1.addSubscriber({
email: 'test@bentonow.com',
})
.then(result => console.log(result))
.catch(error => console.error(error));
bento.V1.addSubscriber({
date: new Date('2021-08-20T01:32:57.530Z'),
email: 'test@bentonow.com',
fields: {
firstName: 'Test',
lastName: 'Subscriber',
},
})
.then(result => console.log(result))
.catch(error => console.error(error));
This TRIGGERS automations! - If you do not wish to trigger automations, please use the Commands.unsubscribe
method.
Unsubscribes an email in the system. If the email is already unsubscribed, another unsubscribe event will be sent, triggering any automations that take place upon an unsubscribe happening. Please be aware of the potential consequences.
Because this method uses the batch API, the tag may take between 1 and 3 minutes to appear in the system.
Returns true
if the event was successfully dispatched. Returns false
otherwise.
Reference Types: RemoveSubscriberParameters
bento.V1.removeSubscriber({
email: 'test@bentonow.com',
})
.then(result => console.log(result))
.catch(error => console.error(error));
This TRIGGERS automations! - If you do not wish to trigger automations, please use the Commands.addField
method.
Sets the passed-in custom fields on the subscriber, creating the subscriber if it does not exist. If the fields are already set on the subscriber, the event will be sent, triggering any automations that take place upon fields being updated. Please be aware of the potential consequences.
Because this method uses the batch API, the tag may take between 1 and 3 minutes to appear in the system.
Returns true
if the event was successfully dispatched. Returns false
otherwise.
Reference Types: UpdateFieldsParameters<S>
bento.V1.updateFields({
email: 'test@bentonow.com',
fields: {
firstName: 'Test',
},
})
.then(result => console.log(result))
.catch(error => console.error(error));
This TRIGGERS automations! - There is no way to achieve this same behavior without triggering automations.
Tracks a purchase in Bento, used to calculate LTV for your subscribers. The values that are received should be numbers, in cents. For example, $1.00
should be 100
.
Because this method uses the batch API, the tag may take between 1 and 3 minutes to appear in the system.
Returns true
if the event was successfully dispatched. Returns false
otherwise.
Reference Types: TrackPurchaseParameters
bento.V1.trackPurchase({
email: 'test@bentonow.com',
purchaseDetails: {
unique: {
key: 1234,
},
value: {
amount: 100,
currency: 'USD',
},
},
})
.then(result => console.log(result))
.catch(error => console.error(error));
This TRIGGERS automations! - There is no way to achieve this same behavior without triggering automations.
Tracks a custom event in Bento.
Because this method uses the batch API, the tag may take between 1 and 3 minutes to appear in the system.
Returns true
if the event was successfully dispatched. Returns false
otherwise.
Reference Types: TrackParameters<S, E>
bento.V1.track({
email: 'test@bentonow.com',
type: '$custom.event',
fields: {
firstName: 'Custom Name',
lastName: 'Custom Name',
},
details: {
fromCustomEvent: true,
},
})
.then(result => console.log(result))
.catch(error => console.error(error));
This does not trigger automations! - If you wish to trigger automations, please batch import events.
Creates a batch job to import subscribers into the system. You can pass in between 1 and 1,000 subscribers to import. Each subscriber must have an email, and may optionally have any additional fields. The additional fields are added as custom fields on the subscriber.
This method is processed by the Bento import queues and it may take between 1 and 5 minutes for the results to appear in your dashboard.
Returns the number of subscribers that were imported.
Reference Types: BatchImportSubscribersParameter<S>
bento.V1.Batch.importSubscribers({
subscribers: [
{
email: 'test@bentonow.com',
age: 21,
},
{
email: 'test2@bentonow.com',
some_custom_variable: 'tester-123',
primary_user: true,
},
{
email: 'test3@bentonow.com',
name: 'Test User',
},
],
})
.then(result => console.log(result))
.catch(error => console.error(error));
Creates a batch job to import events into the system. You can pass in between 1 and 100 events to import. Each event must have an email and a type. In addition to this, you my pass in additional data in the details
property,
Returns the number of events that were imported.
Reference Types: BatchImportEventsParameter<S, E>
bento.V1.Batch.importEvents({
events: [
{
email: 'test@bentonow.com',
type: BentoEvents.SUBSCRIBE,
},
{
email: 'test@bentonow.com',
type: BentoEvents.UNSUBSCRIBE,
},
{
email: 'test@bentonow.com',
type: BentoEvents.REMOVE_TAG,
details: {
tag: 'tag_to_remove',
},
},
{
email: 'test@bentonow.com',
type: BentoEvents.TAG,
details: {
tag: 'tag_to_add',
},
},
{
email: 'test@bentonow.com',
details: {
customData: 'Used internally.',
},
type: '$custom.myEvent,
},
],
})
.then(result => console.log(result))
.catch(error => console.error(error));
Batch.sendTransactionalEmails(parameters: BatchsendTransactionalEmailsParameter<S, E>): Promise<number>
Creates a batch job to send transactional emails from Bento's infrastructure. You can pass in between 1 and 100 emails to send. Each email must have a to
address, a from
address, a subject
, an html_body
and transactional: true
.
In addition you can add a personalizations
object to provide liquid tags that will be injected into the email.
Requests are instant and queued into a priority queue. Most requests will be processed within 30 seconds. We currently limit this endpoint to 60 emails per minute.
Returns the number of emails that were imported.
bento.V1.Batch.sendTransactionalEmails({
emails: [
{
to: 'test@bentonow.com', // required — if no user with this email exists in your account they will be created.
from: 'jesse@bentonow.com', // required — must be an email author in your account.
subject: 'Reset Password', // required
html_body: '<p>Here is a link to reset your password ... {{ link }}</p>', // required - can also use text_body if you want to use our plain text theme.
transactional: true, // IMPORTANT — this bypasses the subscription status of a user. Abuse will lead to account shutdown.
personalizations: {
link: 'https://example.com/test',
}, // optional — provide your own Liquid tags to be injected into the email.
},
],
})
.then(result => console.log(result))
.catch(error => console.error(error));
This does not trigger automations! - If you wish to trigger automations, please use the core module's tagSubscriber
method.
Adds a tag to the subscriber with the matching email.
Note that both the tag and the subscriber will be created if either is missing from system.
Reference Types: AddTagParameters, Subscriber<S>
bento.V1.Commands.addTag({
email: 'test@bentonow.com',
tagName: 'Test Tag',
})
.then(result => console.log(result))
.catch(error => console.error(error));
Removes the specified tag from the subscriber with the matching email.
Reference Types: RemoveTagParameters, Subscriber<S>
bento.V1.Commands.removeTag({
email: 'test@bentonow.com',
tagName: 'Test Tag',
})
.then(result => console.log(result))
.catch(error => console.error(error));
This does not trigger automations! - If you wish to trigger automations, please use the core module's updateFields
method.
Adds a field to the subscriber with the matching email.
Note that both the field and the subscriber will be created if either is missing from system.
Reference Types: AddFieldParameters<S>, Subscriber<S>
bento.V1.Commands.addField({
email: 'test@bentonow.com',
field: {
key: 'testKey',
value: 'testValue',
},
})
.then(result => console.log(result))
.catch(error => console.error(error));
Removes a field to the subscriber with the matching email.
Reference Types: RemoveFieldParameters<S>, Subscriber<S>
bento.V1.Commands.removeField({
email: 'test@bentonow.com',
fieldName: 'testField',
})
.then(result => console.log(result))
.catch(error => console.error(error));
This does not trigger automations! - If you wish to trigger automations, please use the core module's addSubscriber
method.
Subscribes the supplied email to Bento. If the email does not exist, it is created.
If the subscriber had previously unsubscribed, they will be re-subscribed.
Reference Types: SubscribeParameters, Subscriber<S>
bento.V1.Commands.subscribe({
email: 'test@bentonow.com',
})
.then(result => console.log(result))
.catch(error => console.error(error));
This does not trigger automations! - If you wish to trigger automations, please use the core module's removeSubscriber
method.
Unsubscribes the supplied email to Bento. If the email does not exist, it is created and immediately unsubscribed. If they had already unsubscribed, the unsubscribed_at
property is updated.
Reference Types: UnsubscribeParameters, Subscriber<S>
bento.V1.Commands.unsubscribe({
email: 'test@bentonow.com',
})
.then(result => console.log(result))
.catch(error => console.error(error));
Updates the email of a user in Bento.
Reference Types: ChangeEmailParameters, Subscriber<S>
bento.V1.Commands.changeEmail({
oldEmail: 'test@bentonow.com',
newEmail: 'new@bentonow.com',
})
.then(result => console.log(result))
.catch(error => console.error(error));
EXPERIMENTAL - This functionality is experimental and may change or stop working at any time.
Attempts to validate the email. You can provide additional information to further refine the validation.
If a name is provided, it compares it against the US Census Data, and so the results may be biased.
Reference Types: ValidateEmailParameters
bento.V1.Experimental.validateEmail({
email: 'test@bentonow.com',
})
.then(result => console.log(result))
.catch(error => console.error(error));
EXPERIMENTAL - This functionality is experimental and may change or stop working at any time.
Attempts to guess the gender of the person given a provided name. It compares the name against the US Census Data, and so the results may be biased.
It is possible for the gender to be unknown if the system cannot confidently conclude what gender it may be.
Reference Types: GuessGenderParameters, GuessGenderResponse
bento.V1.Experimental.guessGender({
name: 'Jesse',
})
.then(result => console.log(result))
.catch(error => console.error(error));
EXPERIMENTAL - This functionality is experimental and may change or stop working at any time.
Attempts to provide location data given a provided IP address.
Reference Types: GeolocateParameters, LocationData
bento.V1.Experimental.geolocate({
ip: '127.0.0.1',
})
.then(result => console.log(result))
.catch(error => console.error(error));
EXPERIMENTAL - This functionality is experimental and may change or stop working at any time.
Looks up the provided URL or IP Address against various blacklists to see if the site has been blacklisted anywhere.
Reference Types: BlacklistParameters, BlacklistResponse
bento.V1.Experimental.checkBlacklist({
domain: 'bentonow.com',
})
.then(result => console.log(result))
.catch(error => console.error(error));
Returns all of the fields for the site.
Reference Types: Field
bento.V1.Experimental.validateEmail({
email: 'test@bentonow.com',
})
.then(result => console.log(result))
.catch(error => console.error(error));
Creates a field inside of Bento. The name of the field is automatically generated from the key that is passed in upon creation. For example:
Key | Name |
---|---|
'thisIsAKey' |
'This Is A Key' |
'this is a key' |
'This Is A Key' |
'this-is-a-key' |
'This Is A Key' |
'this_is_a_key' |
'This Is A Key' |
Reference Types: CreateFieldParameters, Field
bento.V1.Fields.createField({
key: 'testKey',
})
.then(result => console.log(result))
.catch(error => console.error(error));
Returns all of the responses for the form with the specified identifier.
Reference Types: FormResponse
bento.V1.Forms.getResponses('test-formid-1234')
.then(result => console.log(result))
.catch(error => console.error(error));
Returns the subscriber with the specified email or UUID.
Reference Types: GetSubscribersParameters, Subscriber<S>
bento.V1.Subscribers.getSubscribers({
uuid: '1234',
})
.then(result => console.log(result))
.catch(error => console.error(error));
bento.V1.Subscribers.getSubscribers({
email: 'test@bentonow.com',
})
.then(result => console.log(result))
.catch(error => console.error(error));
Creates a subscriber inside of Bento.
Reference Types: CreateSubscriberParameters, Subscriber<S>
bento.V1.Subscribers.createSubscriber({
email: 'test@bentonow.com',
})
.then(result => console.log(result))
.catch(error => console.error(error));
Returns all of the fields for the site.
Reference Types: Tag
bento.V1.Tags.getTags()
.then(result => console.log(result))
.catch(error => console.error(error));
Creates a tag inside of Bento.
Reference Types: Tag
bento.V1.Tags.createTag({
name: 'test tag',
})
.then(result => console.log(result))
.catch(error => console.error(error));
The S
from above represents the type of your subscriber's custom fields in Bento. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ | |
field | { key: keyof S; value: any } |
none | ✔️ |
The S
from above represents the type of your subscriber's custom fields in Bento. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
string |
none | ✔️ | |
fields | Partial<S> |
none | ❌ |
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ | |
tagName | string |
none | ✔️ |
The S
from above represents the type of your subscriber's custom fields in Bento. This only applies in TypeScript
. Please read the TypeScript section for more details.
The E
from above represents the prefix that is used to define your custom events. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
events | [BentoEvent<S, E>[] ](#BentoEvent<S, E>) |
none | ✔️ |
The S
from above represents the type of your subscriber's custom fields in Bento. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
subscribers | ({ email: string } & Partial<S>)[] |
none | ✔️ |
This type is a discriminated union of a few different types. Each of these types are documented below:
The E
from above represents the prefix that is used to define your custom events. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
details | { [key: string]: any } |
none | ✔️ |
string |
none | ✔️ | |
type | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
details | PurchaseDetails |
none | ✔️ |
string |
none | ✔️ | |
type | BentoEvents.PURCHASE | '$purchase' |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
string |
none | ✔️ | |
fields | Partial<S> |
none | ❌ |
type | BentoEvents.SUBSCRIBE | '$subscribe' |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
details | { tag: string } |
none | ✔️ |
string |
none | ✔️ | |
type | BentoEvents.TAG | '$tag' |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
string |
none | ✔️ | |
type | BentoEvents.UNSUBSCRIBE | '$unsubscribe' |
none | ✔️ |
The S
from above represents the type of your subscriber's custom fields in Bento. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
string |
none | ✔️ | |
type | BentoEvents.UPDATE_FIELDS | '$update_fields' |
none | ✔️ |
fields | Partial<S> |
none | ✔️ |
Note that this takes either domain
or ip
, but never both.
Property | Type | Default | Required |
---|---|---|---|
domain | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
ip | string |
none | ✔️ |
The results is an object where the key is the name of the blacklist that was checked, and the value is whether or not the domain/IP appeared on that blacklist.
Property | Type | Default | Required |
---|---|---|---|
description | string |
none | ✔️ |
query | string |
none | ✔️ |
results | { [key: string]: boolean } |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
height | string |
none | ✔️ |
user_agent | string |
none | ✔️ |
width | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
oldEmail | string |
none | ✔️ |
newEmail | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
key | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
name | string |
none | ✔️ |
This is an enum with the following values:
Name | Value |
---|---|
EVENTS | 'events' |
TAGS | 'tags' |
VISITORS | 'visitors' |
VISITORS_FIELDS | 'visitors-fields' |
Property | Type | Default | Required |
---|---|---|---|
attributes | FieldAttributes |
none | ✔️ |
id | string |
none | ✔️ |
type | EntityType.VISITORS_FIELDS |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
created_at | string |
none | ✔️ |
key | string |
none | ✔️ |
name | string |
none | ✔️ |
whitelisted | boolean | null |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
attributes | FormResponseAttributes |
none | ✔️ |
id | string |
none | ✔️ |
type | EntityType.EVENTS |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
data | FormResponseData |
none | ✔️ |
uuid | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
browser | BrowserData |
none | ✔️ |
date | string |
none | ✔️ |
details | { [key: string]: any } |
none | ✔️ |
fields | { [key: string]: any } |
none | ✔️ |
id | string |
none | ✔️ |
identity | IdentityData |
none | ✔️ |
ip | string |
none | ✔️ |
location | LocationData |
none | ✔️ |
page | PageData |
none | ✔️ |
site | string |
none | ✔️ |
type | string |
none | ✔️ |
visit | string |
none | ✔️ |
visitor | string |
none | ✔️ |
Note that this takes either email
or uuid
, but never both.
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
uuid | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
ip | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
name | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
confidence | number | null |
none | ✔️ |
gender | string | null |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
city_name | string |
none | ❌ |
continent_code | string |
none | ❌ |
country_code2 | string |
none | ❌ |
country_code3 | string |
none | ❌ |
country_name | string |
none | ❌ |
ip | string |
none | ❌ |
latitude | number |
none | ❌ |
longitude | number |
none | ❌ |
postal_code | string |
none | ❌ |
real_region_name | string |
none | ❌ |
region_name | string |
none | ❌ |
request | string |
none | ❌ |
Property | Type | Default | Required |
---|---|---|---|
host | string |
none | ✔️ |
path | string |
none | ✔️ |
protocol | string |
none | ✔️ |
referrer | string |
none | ✔️ |
url | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
abandoned_checkout_url | string |
none | ❌ |
items | PurchaseItem[] |
none | ❌ |
Property | Type | Default | Required |
---|---|---|---|
unique | { key: string | number; } |
none | ✔️ |
value | { currency: string; amount: number; } |
none | ✔️ |
cart | PurchaseCart |
none | ❌ |
In addition to the properties below, you can pass any other properties that you want as part of the PurchaseItem
.
Property | Type | Default | Required |
---|---|---|---|
product_sku | string |
none | ❌ |
product_name | string |
none | ❌ |
quantity | number |
none | ❌ |
product_price | number |
none | ❌ |
product_id | string |
none | ❌ |
The S
from above represents the type of your subscriber's custom fields in Bento. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ | |
fieldName | keyof S |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ | |
tagName | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ |
The S
from above represents the type of your subscriber's custom fields in Bento. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
attributes | SubscriberAttributes<S> |
none | ✔️ |
id | string |
none | ✔️ |
type | EntityType.VISITOR |
none | ✔️ |
The S
from above represents the type of your subscriber's custom fields in Bento. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
cached_tag_ids | string[] |
none | ✔️ |
string |
none | ✔️ | |
fields | S | null |
none | ✔️ |
unsubscribed_at | string |
none | ✔️ |
uuid | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
created_at | string |
none | ✔️ |
discarded_at | string | null |
none | ✔️ |
name | string | null |
none | ✔️ |
site_id | string |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
attributes | TagAttributes |
none | ✔️ |
id | string |
none | ✔️ |
type | EntityType.TAG |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
string |
none | ✔️ | |
tagName | string |
none | ✔️ |
The S
from above represents the type of your subscriber's custom fields in Bento. This only applies in TypeScript
. Please read the TypeScript section for more details.
The E
from above represents the prefix that is used to define your custom events. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ | |
type | string |
none | ✔️ |
details | { [key: string]: any } |
none | ❌ |
fields | Partial<S> |
none | ❌ |
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
string |
none | ✔️ | |
purchaseDetails | PurchaseDetails |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ |
The S
from above represents the type of your subscriber's custom fields in Bento. This only applies in TypeScript
. Please read the TypeScript section for more details.
Property | Type | Default | Required |
---|---|---|---|
date | Date |
none | ❌ |
string |
none | ✔️ | |
fields | Partial<S> |
none | ✔️ |
Property | Type | Default | Required |
---|---|---|---|
string |
none | ✔️ | |
ip | string |
none | ❌ |
name | string |
none | ❌ |
userAgent | string |
none | ❌ |
The Bento Node SDK is written entirely in TypeScript and, as such, has first-class support for projects written in TypeScript. It takes advantage of generics to make your code more bullet-proof and reduce bugs throughout your system.
The S
generic is a type that represents the shape of the custom fields on your Bento subscribers. If this is provided, all of the methods that interact with these fields (including fetching the subscriber from the API) will be typed appropriately.
To set this type, pass it as the first generic parameter when initializing your Analytics
object.
type MySubscriberFields = {
firstName: string;
lastName: string;
age: number;
};
const bento = new Analytics<MySubscriberFields>({
// ... initialization options from above.
});
The E
generic is a string that represents the custom prefix used for your custom commands. This is used to ensure that you are not accidentally changing things on your subscribers that you do not intend to change. It also prevents clashes with using internal Bento events.
To set this type, pass it as the second generic parameter when initializing your Analytics
object.
const bento = new Analytics<any, '$myPrefix.'>({
// ... initialization options from above.
});
- Tracking: All events must be identified. Anonymous support coming soon!
- Tracking: Most events and indexed inside Bento within a few seconds.
- If you need support, just let us know!
Bug reports and pull requests are welcome on GitHub at https://github.com/bentonow/bento-node-sdk. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The package is available as open source under the terms of the MIT License.