timing2
v0.3.4
Published
The state-of-art web performance metrics collector based on High Resolution Time API
Maintainers
Readme
timing2

A PerformanceTimeline polyfill for legacy browsers.
Usage
module
npm install --save timing2import timing2 from 'timing2';
timing2.getEntries();
timing2.getEntriesByName(name);
timing2.getEntriesByType('navigation');
timing2.now();
timing2.timeOrigin;standalone
<script src="https://unpkg.com/[email protected]/lib/timing2.js"></script>
<script>
timing2.getEntries();
timing2.getEntriesByName(name);
timing2.getEntriesByType('navigation');
timing2.now();
timing2.timeOrigin;
</script>API
The following methods and properties of window.performance is polyfilled:
- getEntries
- getEntriesByName
- getEntriesByType
- now
- timeOrigin
For legacy browsers, only NavigationTiming will be returned.
ChangeLog
v0.3.0
- make this project a polyfill
