moleculer-segment
v1.0.0
Published
![Moleculer logo](http://moleculer.services/images/banner.png)
Downloads
3
Readme
moleculer-segment
Service for Segment.
Install
$ yarn add moleculer-segment
Usage
Add environment variable
SEGMENT_WRITE_KEY=12345
Identify, track, …
For identify an user
broker.call('segment.identify', {
userId: '1234',
traits: {
// for example a name and an email
name: 'Jean Dupont',
email: '[email protected]',
}
})
For track an event
broker.call('segment.track', {
userId: '1234',
// you can an address ip
ip: '8.8.4.4',
properties: {
'referer': 'action',
}
})