npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

usertiming

v0.1.8

Published

W3C UserTiming polyfill

Downloads

26,820

Readme

UserTiming.js

v0.1.8

Copyright 2014 Nic Jansma

http://nicj.net

Licensed under the MIT license

Introduction

UserTiming.js is a polyfill that adds UserTiming support to browsers that do not natively support it.

UserTiming is accessed via the PerformanceTimeline, and requires window.performance.now() support, so UserTiming.js adds a limited version of these interfaces if the browser does not support them (which is likely the case if the browser does not natively support UserTiming).

As of 2013-04-15, UserTiming is natively supported by the following browsers:

  • IE 10+
  • Chrome 25+ (prefixed)

UserTiming.js has been verified to add UserTiming support to the following browsers:

  • IE 6-9
  • Firefox 3.6+ (previous versions not tested)
  • Safari 4.0.5+ (previous versions not tested)
  • Opera 10.50+ (previous versions not tested)

UserTiming.js will detect native implementations of UserTiming, window.performance.now() and the PerformanceTimeline and will not make any changes if those interfaces already exist. When a prefixed version is found, it is copied over to the unprefixed name.

Download

Releases are available for download from GitHub.

Development: usertiming.js - 18.1kb

Production: usertiming.min.js - 1,187b (minified / gzipped)

usertiming.js is also available as the npm usertiming module. You can install using Node Package Manager (npm):

npm install usertiming

usertiming.js is also available via bower. You can install using:

bower install usertiming

CDN

usertiming.js is available from the following CDNs:

Usage

Please see the W3C UserTiming API Reference for details on how to use the UserTiming API.

To include the UserTiming.js polyfill, simply include it via a script tag:

<script type="text/javascript" src="usertiming.min.js"></script>

Disadvantages of UserTiming.js over native implementations

UserTiming.js provides a 100% functional JavaScript implementation of UserTiming. However, implementing the API in JavaScript has some disadvantages over native (built into the browser) implementations.

  1. If the browser does not natively support DOMHighResolutionTimestamps / window.performance.now(), UserTiming.js adds a small shim (via the Date object) to mock this interface. However, DOMHighResolutionTimestamp provides higher precision (0.1 milliseconds or better) than the native Date object can (1.0 millisecond -- or worse in older browsers). So if window.performance.now() has to be mocked, it will not be as precise as native implementations.

  2. UserTiming marks and measures are queried via the PerformanceTimeline, for example by using getEntries(), getEntriesByType() or getEntriesByName(). UserTiming.js adds these interfaces so you can query for marks and measures, but they obviously will not support any other PerformanceEntrys such as ResourceTiming.

  3. UserTiming.js is implemented in JavaScript, so it will be less performant than a native implementation. If you are calling mark() or measure() at a high-rate, you might incur a performance cost from the UserTiming.js JavaScript implementation versus a native implementation.

Tests

UserTiming.js tests

UserTiming.js tests are provided in the test/ directory, and can be run via nodeunit:

nodeunit test/test.js

Or via grunt:

grunt test

The tests can also be run in a web browser:

test/test.html

W3C tests

The latest W3C UserTiming tests (as of 2013-04-15) were copied into the test-w3c/ directory and can be run in any browser to validate UserTiming.js. In browsers that natively support UserTiming, UserTiming.js does not change anything so the tests will be running against the native browser interface.

The following changes were made to the W3C test suite to work with UserTiming.js:

  • The relative test harness JS/CSS urls were changed to point to the local test-w3c/ directory (such as testharness.js, webperftestharness.js, etc)

  • All tests were updated to add a reference to ../src/usertiming.js so usertiming.js is actually used

  • test_user_timing_measure.htm and test_user_timing_mark.htm: The threshold was increased from 20ms to 50ms (due to inefficiencies in the test suite)

Additional notes:

  • usertiming.js does not pass the IDL tests (idlharness.html), nor will it ever.

  • The W3C test harness itself does not appear to work in several older browsers (IE <= 8, Firefox 3.6, etc). The UserTiming.js test cases should cover most of what the W3C tests are doing, and the nodeunit test harness works in these older browsers.

Version History

  • v0.1.0 - 2013-04-15: Initial version
  • v0.1.1 - 2014-02-19: Updated dependencies, grunt lint task, bower package name
  • v0.1.2 - 2014-02-19: Small bower.json fix
  • v0.1.3 - 2014-08-07: Include dist/ dir in bower and npm packages
  • v0.1.4 - 2014-10-28: Fix for Safari iOS 8
  • v0.1.5 - 2015-01-12: Fix for FF 35
  • v0.1.6 - 2015-02-01: Better FF 35 support (or any browser that has RT but not UT)
  • v0.1.7 - 2015-09-14: Dev-only changes: Lint, switched from NodeUnit to Mocha
  • v0.1.8 - 2016-05-15: Fall back to process.hrtime() if available