v0.1.0
Licensed under the MIT license
usertiming-compression.js
compresses data from UserTiming. A
companion script, usertiming-decompression.js
, converts the compressed data back to the original form.
UserTiming is a modern browser performance API that gives developers the ability the mark important events (timestamps) and measure durations (timestamp deltas) in their web apps. The PerformanceTimeline has several methods such as
performance.getEntriesByType('mark')
or performance.getEntriesByType('measure')
that return each mark or measure's startTime
(timestamp) and duration
(for measures).
usertiming-compression.js
applies several data-compression techniques to reduce the size of your serialized
UserTiming data to 10-15% of it's original size in many cases. See
this blog post for a description of these techniques.
usertiming-decompression.js
is a companion script that will take the compressed UserTiming data and
build it back to its original UserTiming form (eg. performance.getEntriesByType('mark')
) for analysis.
Releases are available for download from GitHub.
Development: usertiming-compression.js - 19kb
Production: usertiming-compression.min.js - 3.9kb minified, 1.6kb gzipped
Development: usertiming-decompression.js - 15.9kb
Production: usertiming-decompression.min.js - 3.7kb minified, 1.5kb gzipped
usertiming-compression.js is also available as the npm usertiming-compression module. You can install using Node Package Manager (npm):
npm install usertiming-compression
usertiming-compression.js is also available via bower. You can install using:
bower install usertiming-compression
Please see the W3C UserTiming API Reference for details on how to use the UserTiming API.
To include usertiming-compression.js, include it via a script tag:
<script type="text/javascript" src="usertiming-compression.min.js"></script>
Once included in the page, a top-level UserTimingCompression
object is available on window
. If AMD or CommonJS environments are detected, it will expose itself via those methods.
From the NPM module:
var UserTimingCompression = require("usertiming-compression").UserTimingCompression;
To get a map of compressed UserTiming names to values, you can call:
var utMap = UserTimingCompression.getCompressedUserTiming(options);
// {
// "mark1": "2s",
// "mark2": "5k",
// "mark3": "8c"
// }
If you have a map of mark / measure names you want to use, pass them in as options.map
:
var utMap = UserTimingCompression.getCompressedUserTiming({
map: {
"mark1": 0,
"mark2": 1,
"mark3": 2
}
});
// {
// "0": "2s",
// "1": "5k",
// "2": "8c"
// }
If you want to further compress this list for a format suitable for URL transmission (e.g. on a query string), you can use compressForUri()
:
var utData = UserTimingCompression.compressForUri(utMap);
// ~(m~(ark~(1~'2s~2~'5k~3~'8c)))
Gathers all UserTiming marks and measures from the root HTML page and all accessible IFRAMEs.
Arguments:
options
(optional)options.map
: A map of names to indexes to use for compression.options.from
: The minimumstartTime
options.to
: The maximumstartTime
Returns: A map of names to compressed values.
{
"mark1": "2s",
"mark2": "5k",
"mark3": "8c"
}
Takes the output of getCompressedUserTiming()
and converts it into a string suitable for URI encoding.
Arguments:
map
A map of names to string values
Returns: A map of names to compressed values.
"~(m~(ark~(1~'2s~2~'5k~3~'8c)))"
Note: The first character of the string denotes what type of compression is used:
~
is optimized Trie (JSURL) compression0
is a tilde array1
is a mapped array
To include usertiming-decompression.js, include it via a script tag:
<script type="text/javascript" src="usertiming-decompression.min.js"></script>
Once included in the page, a top-level UserTimingDecompression
object is available on window
. If AMD or CommonJS environments are detected, it will expose itself via those methods.
From the NPM module:
var UserTimingDecompression = require("usertiming-compression").UserTimingDecompression;
To decompress your resources, you can call:
var original = UserTimingDecompression.decompressUserTiming(utData);
Decompresses data from a URI-encoded form.
Arguments:
data
Data compressed viacompressForUri()
Returns: The original UserTiming data
[
{"duration":0,"entryType":"mark","name":"mark1","startTime":100},
{"duration":0,"entryType":"mark","name":"mark1","startTime":150},
{"duration":0,"entryType":"mark","name":"mark1","startTime":500}
]
Tests are provided in the test/
directory, and can be run via mocha
:
mocha test/*
Or via gulp
:
gulp test
- v0.1.0 - 2015-12-10: Initial version
- v0.1.1 - 2016-04-04:
getCompressedUserTiming()
gathers Measures that end after the specifiedfrom
- v0.1.2 - 2016-04-04: Protect against X-O frame access that crashes some browsers
Parts of JSURL were incorporated into this library. This project builds upon the work of ResourceTiming Compression, with guidance from Philip Tellis and others at SOASTA.