Dustin

Results 11 comments of Dustin

I ran into this as well, but made it work by changing `'./'` to `'index.html'` and moving `OfflinePlugin()` below `HtmlWebpackPlugin()` in the plugin list.

@TheLarkInn thanks for the note- please check out the 3 modules that make up this package: https://github.com/keen/keen-js#installation Loading these independently should help you find the saving you're looking for. The...

@josephwegner that's a pretty rad project! I made a basic error catcher for keen here: https://gist.github.com/dustinlarimer/9908181

I would love to run something like this on keen-web so we can get ahead of things breaking if/when new browser versions roll out.. had that happen with a fun...

@josephwegner what do you think about a timer utility with start/pause/resume methods? You could register and manage various timers, toggle them on/off based on window or user events, and pull...

pseudo code: ``` javascript var totalTime = new Timer().start(); var activeTime = new Timer().start(); // window loses focus: activeTime.pause(); // window regains focus activeTime.resume(); console.log("Active: " + activeTime.total() + "...

That's a really cool interface for this! That timers object would be it super easy to include values when an event is sent.. or to just include them all by...

@tankerkiller125 this now exists in keen-tracking.js :) https://github.com/keen/keen-tracking.js#timers

@alexford awesome, thanks! I believe I did try sending both to Twilio, including an empty `from` param, and IIRC it returned an error.