Jesse Luoto
Jesse Luoto
We could use browser's [Navigation Timing API](https://developer.mozilla.org/en-US/docs/Web/API/Navigation_timing_API#Calculate_the_total_page_load_time) by default.
The official analytics.js [does report page load times](https://developers.google.com/analytics/devguides/collection/analyticsjs/field-reference#siteSpeedSampleRate), but [only 1%-10% of the page loads](https://developers.google.com/analytics/devguides/collection/analyticsjs/user-timings#sampling_considerations) (1% by default)
There's no specific roadmap (I'm still the only person contributing to ga-lite) planned, but this feature is a high priority to next releases. Any contributions to code would be warmly...
Partly resolved, already supports custom timings
akalicki I like your idea. I'd be glad to add you as collaborators for each language on the same repository to keep the code in one place. Go ahead and...
@go-oleg @ryan-endacott @walkhard this project has indeed grown out of one repository's boundaries. That's why I've made you collaborators, and all help would be greatly appreciated to get this project...
Some examples where compositional/functional patterns has been used: * [Emacs lisp `rx`](https://github.com/typester/emacs/blob/master/lisp/emacs-lisp/rx.el) * [F# VerbalExpressions](http://verbalexpressions.github.io/FSharpVerbalExpressions/) * [PureScript VerbalExpressions](https://github.com/VerbalExpressions/purescript-verbal-expressions) * [Erlang VerbalExpressions](https://github.com/VerbalExpressions/ErlangVerbalExpressions/blob/master/test.erl)
ES module/TypeScript imports would look like this: ```js import { VerEx, startOfLine, maybe, anythingBut, endOfLine } from 'verbal-expressions' ``` On node.js require you can use: ```js const { VerEx, startOfLine,...
I can create a POC draft pull request to show a couple of ideas, and we can iterate from that. Does that sound good?
Ok, so I did some work that I'd like to show you: #197