An open API service indexing awesome lists of open source software.

https://github.com/everflow-io/everflow-sdk

Everflow's javascript SDK
https://github.com/everflow-io/everflow-sdk

everflow javascript sdk

Last synced: 5 months ago
JSON representation

Everflow's javascript SDK

Awesome Lists containing this project

README

          

[![npm (scoped)](https://img.shields.io/npm/v/@everflow/everflow-sdk)](https://www.npmjs.com/package/@everflow/everflow-sdk)

## Usage

Get the latest version of the SDK on npm [here](https://www.npmjs.com/package/@everflow/everflow-sdk).

Configure the SDK before doing any tracking.

```javascript
EF.configure({
// You only need to set the tracking domain you want to use
tracking_domain: 'https://.com',
})
```

If using the NPM module, the Everflow SDK instance is exported as default.

```javascript
const EverflowSDK = require('@everflow/everflow-sdk');

EverflowSDK.configure({
// You only need to set the tracking domain you want to use
tracking_domain: 'https://.com',
})
```

## [Documentation](https://developers.everflow.io/docs/everflow-sdk)
Usage directives and examples can be found on our developer hub