mixpanel-lite
mixpanel-lite copied to clipboard
3k alternative to mixpanel-js with offline support for PWAs
mixpanel-lite adds multiple environment properties to each tracking event. Because they are not name-spaced, there is a risk the user could overwrite these values with tracking data. The best approach...
Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...
Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2. Release notes Sourced from json5's releases. v1.0.2 Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a...
Bumps [json5](https://github.com/json5/json5) and [tsconfig-paths](https://github.com/dividab/tsconfig-paths). These dependencies needed to be updated together. Updates `json5` from 1.0.1 to 2.2.3 Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest'...
Bumps [express](https://github.com/expressjs/express) from 4.17.1 to 4.17.3. Release notes Sourced from express's releases. 4.17.3 deps: accepts@~1.3.8 deps: mime-types@~2.1.34 deps: [email protected] deps: [email protected] deps: [email protected] deps: [email protected] deps: [email protected] deps: [email protected] deps:...
Bumps [qs](https://github.com/ljharb/qs) from 6.7.0 to 6.11.0. Changelog Sourced from qs's changelog. 6.11.0 [New] [Fix] stringify: revert 0e903c0; add commaRoundTrip option (#442) [readme] fix version badge 6.10.5 [Fix] stringify: with arrayFormat:...
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. Release notes Sourced from decode-uri-component's releases. v0.2.2 Prevent overwriting previously decoded tokens 980e0bf https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2 v0.2.1 Switch to GitHub workflows 76abc93 Fix issue where decode...
I'd love to replace the bloated `mixpanel-browser` package with this one. Unfortunately my team currently depend on the following APIs for our app: - [`mixpanel.people.set_once()`](https://github.com/mixpanel/mixpanel-js/blob/656b170293b4cdec1ef5773e9c70847fbbdbb16e/src/mixpanel-people.js#L87) - [`mixpanel.time_event()`](https://github.com/mixpanel/mixpanel-js/blob/656b170293b4cdec1ef5773e9c70847fbbdbb16e/src/mixpanel-core.js#L1020) - [`mixpanel.has_opted_in_tracking()`](https://github.com/mixpanel/mixpanel-js/blob/656b170293b4cdec1ef5773e9c70847fbbdbb16e/src/mixpanel-core.js#L1719) -...
Why -> https://github.com/john-doherty/mixpanel-lite/issues/5#issuecomment-833741169 How -> [Mixpanel multi-event](https://developer.mixpanel.com/reference/events#track-events-in-batch) Logic: _something like this needs adding into the `send()` method before we turn them into requests_ ```js var temp = []; /** *...