@userlist/push

0.2.0 • Public • Published

@userlist/push

This package helps with integrating Userlist into Node.js applications for server side tracking.

For client side tracking, please use @userlist/web.

Installation

To install this package, use one of the commands corresponding to your package manager.

Via NPM:

npm install @userlist/push

Via Yarn:

yarn add @userlist/push

Configuration

The only required configuration is the Push API key. You can get your Push API key via the Push API settings in your Userlist account.

Configuration values can either be set via the constructor or as environment variables. The environment take precedence over configuration values from the constructor.

Configuration via environment variables:

USERLIST_PUSH_KEY=401e5c498be718c0a38b7da7f1ce5b409c56132a49246c435ee296e07bf2be39

Configuration via an constructor:

var Userlist = require('@userlist/push');

var userlist = new Userlist({ pushKey: '401e5c498be718c0a38b7da7f1ce5b409c56132a49246c435ee296e07bf2be39' });

Usage

Tracking Users

To manually send user data into Userlist, use the userlist.users.create method.

var userlist = new Userlist();

userlist.users.create({
  identifier: user.id,
  email: user.email,
  properties: {
    first_name: user.first_name,
    last_name: user.last_name
  }
});

It's also possible to delete a user from Userlist, using the userlist.users.delete method.

userlist.users.delete(user.id)

Tracking Events

To track custom events use the userlist.events.create method.

var userlist = new Userlist();

userlist.events.create({
  name: 'project_created',
  user: user.id,
  properties: {
    project_name: project.name
  }
})

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/userlist/userlist-javascript. 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.

License

The package is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in this project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

What is Userlist?

Userlist

Userlist allows you to onboard and engage your SaaS users with targeted behavior-based campaigns using email or in-app messages.

Userlist was started in 2017 as an alternative to bulky enterprise messaging tools. We believe that running SaaS products should be more enjoyable. Learn more about us.

Readme

Keywords

Package Sidebar

Install

npm i @userlist/push

Weekly Downloads

1,301

Version

0.2.0

License

MIT

Unpacked Size

50.9 kB

Total Files

20

Last publish

Collaborators

  • benediktdeicke