mixpanel-node icon indicating copy to clipboard operation
mixpanel-node copied to clipboard

A node.js API for mixpanel

Results 78 mixpanel-node issues
Sort by recently updated
recently updated
newest added

I am using mixpanel v0.10.1 Node version: v10.15.0 While updating profiles via this library I am getting below errors: Mixpanel Server Error: upstream connect error or disconnect/reset before headers\n at...

I'm looking to update my remote service workers to use a Mixpanel service account https://developer.mixpanel.com/reference/authentication it does not look like this library supports such yet; can that be added? i.e....

I feel like I am missing something. It looks to me as though import() sends the request as a GET request when it should be a POST request according to...

In Azure, instances of Node need to utilize outbound connections efficiently as there is a hard limit on the number of concurrent outbound ports (https://docs.microsoft.com/en-us/azure/load-balancer/troubleshoot-outbound-connection) When profiling our use of...

Allows us to use keepalive to increase performance ```javascript var mixpanel = Mixpanel.init('', { protocol: 'https', agent: new https.Agent({ keepAlive: true }), }); ```

https://developer.mixpanel.com/reference/user-profiles#profile-remove-from-list-property Would be nice to have this internally!

```js > err [ { handle: 11, type: 'error', className: 'Error', constructorFunction: { ref: 51 }, protoObject: { ref: 52 }, prototypeObject: { ref: 2 }, properties: [ [Object], [Object]...

I need to set Super properties as documented here https://mixpanel.com/docs/properties-or-segments/how-do-i-set-a-property-every-time I noticed there is no function to do so right now. So I was planning to send a PR with...

In [the types](https://github.com/mixpanel/mixpanel-node/blob/master/lib/mixpanel-node.d.ts), `set` can take a number: ```typescript set(distinctId: string, propertyName: string, value: string | number, callback?: Callback): void; ``` but `set_once` can't: ``` set_once(distinctId: string, propertyName: string, value:...