acdlite/flummox 1698
Minimal, isomorphic Flux.
browserify as a service.
preserving my stars for vanity. former home of react-native-modal
agrublev/angularLocalStorage 353
The simplest angular localStorage implementation you will ever use.
maxogden/browser-module-sandbox 54
browser editor for code that gets 'compiled' on the server with node and run on the client
voronianski/babel-transform-in-browser 46
Transform ES2015 in browser on the fly with Babel.js
sumup-oss/performance-observer 42
Generic interface for PerformanceObserver API.
Require local configs as if they are in node_modules
Create static html pages with esnext, scss and nunjucks easily.
voronianski/Angular-localStorage 2
The simplest localStorage implementation you will ever use.
startedhartator/wayback-machine-downloader
started time in 16 days
startedsnowpackjs/astro
started time in 16 days
startedashiina/lambda-local
started time in a month
issue openedsumup-oss/performance-observer
Summarize the feature
Recently Google CLS doc was updated with adjustment in CLS tracking - https://web.dev/cls/#measure-cls-in-javascript. We need to update our reported too.
Basic example
Taken from the doc above -
// If the entry occurred less than 1 second after the previous entry and
// less than 5 seconds after the first entry in the session, include the
// entry in the current session. Otherwise, start a new session.
if (sessionValue &&
entry.startTime - lastSessionEntry.startTime < 1000 &&
entry.startTime - firstSessionEntry.startTime < 5000) {
sessionValue += entry.value;
sessionEntries.push(entry);
} else {
sessionValue = entry.value;
sessionEntries = [entry];
}
Motivation
Allows more precise tracking.
created time in a month
startedsnowpackjs/astro
started time in 2 months
startedrjsf-team/react-jsonschema-form
started time in 2 months
startedthebitcave/ai-brain-extensions-for-corgi-engine
started time in 2 months