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

Currently, `import_batch` is typed like this: ``` type BatchCallback = (errors: [Error] | undefined) => any; import_batch(eventNames: string[], options?: BatchOptions, callback?: BatchCallback): void; import_batch(eventNames: string[], callback?: BatchCallback): void; import_batch(events: Event[],...

Hello devs, - It would be extremely useful is `track()` returns a unique ID; - Then also have a `get(ID)` that fetches an event. Atm it is not possible to...

Hi, We're using the library in our project and there are usecases where we want to pass the user agent header (from the requests users made to our server) to...

As documented in the https://developer.mixpanel.com/docs/javascript#adding-users-to-a-group ``` //Assign Company A and Company B to a user mixpanel.set_group(“company”, [“Company A”, “Company B”]) ``` How can this be done in nodejs?

Hello a couple of suggestions to make it a bit easier to understand the documentation. Would it be possible to update the documentation to explicitly say that the init function...

Hi Mixpanel Team, We have recently started using this module and its been great so far, however I'm a little unclear regarding the alias method. Our scenario includes users coming...

I am getting this error semi frequently on a consistent event type and I can't seem to tell if there is something in the _payload_ that is causing this or...

enable setting `strict` mode for import via config

Hey all, I've been trying to get a stable implementation of Mixpanel in our app for a couple of weeks now without luck. I'm running an Expo React-Native app with...

On the `Mixpanel.track eventName, evtData, cb` our apps sent huge amount of data inadvertently. That results in error `Error 413 (Request Entity Too Large)` and the callback above is called...