目录
此内容是否有帮助?

# Node.js

TIP

Before you begin, please read Preparation before Data Ingestion.

Latest version: 1.3.5

Update time: 2022-10-20

Resource download: Source Code (opens new window)

# SDK Integration

1.1 Please use npm to get the Node.js SDK:

# install SDK
npm install thinkingdata-node --save

# update SDK
npm i thinkingdata-node@{version}

1.2 Logbus Integration

We recommend using SDK+LogBus to track and report data on server. You can refer to the following documents to complete the installation of Logbus: LogBus User Guide

# Initialization

The following is the sample code for SDK initialization:

var te = ThinkingAnalytics.initWithLoggingMode(LOG_DIRECTORY);

LOG_DIRECTORY is the local folder path.

# Common Features

In order to ensure that the distinct ID and account ID can be bound smoothly, if your game uses the distinct ID and account ID, we strongly recommend that you upload these two IDs at the same time, otherwise the account will not match, causing users to double count. For specific ID binding rules, please refer to the chapter on User identification rules (opens new window).

# 3.1 Sending Events

You can call track to upload events. It is suggested that you set event properties based on the data tracking plan drafted previously. Here is an example of a user buying an item:

var event = {
  accountId: "node_test",
  distinctId: "node_distinct_id",
  event: "test_event",
  time: new Date(),
  // Set the user's ip address, and TE will analyze the user's geographical location information according to the IP address
  ip: "202.38.64.1",
  properties: {
    prop_date: new Date(), // date
    prop_double: 134.1, // number
    prop_string: "hello world", // string
    prop_int: 67
  },
  callback(e) {
    if (e) {
      console.log(e);
    }
  }
};

te.track(event);
  • Key is the name of the property and refers to the string type. It must start with a character, and contain numbers, characters (insensitive to case, and upper cases would be transformed into lower cases by TE) and underscores "_", with a maximum length of 50 characters.
  • Value, the value of the property, supports string, numbers, Boolean, time, object, array object, and array

The requirements for event properties and user properties are the same as that for super properties

# 3.2 User Properties

You can set general user properties by calling user_set API. The original properties would be replaced by the properties uploaded via this API. If no user properties are set before, user properties will be newly created. The type of newly-created user properties must conform to that of the uploaded properties. User name setting is taken as the example here:

var userData = {
  accountId: "node_test",
  distinctId: "node_distinct_id",
  properties: {
    userName: "TE",
  },
  callback(e) {
    if (e) {
      console.log(e);
    }
  }
};

te.userSet(userData);

# Best Practice

The following sample code covers all the above-mentioned operations. It is recommended that the codes be used in the following steps:

//LOG_DIRECTORY is the local folder address
var te = ThinkingAnalytics.initWithLoggingMode(LOG_DIRECTORY);

var event = {
  accountId: "node_test",
  distinctId: "node_distinct_id",
  event: "test_event",
  time: new Date(),
  //Set the user's ip address, and TE will analyze the user's geographical location information according to the IP address
  ip: "202.38.64.1",
  properties: {
    prop_date: new Date(),
    prop_double: 134.1,
    prop_string: "hello world",
    prop_int: 67
  },
  callback(e) {
    if (e) {
      console.log(e);
    }
  }
};

te.track(event);

var userData = {
  accountId: "node_test",
  distinctId: "node_distinct_id",
  properties: {
    prop_date: new Date(),
    prop_double: 134.12,
    prop_string: "hello",
    prop_int: 666
  },
  callback(e) {
    if (e) {
      console.log(e);
    }
  }
};

te.userSet(userData);

//Calling the flush API will immediately write the data to the file. 
//In the production environment, pay attention to avoid IO or network overhead caused by frequent calls to flush
te.flush();