server-timify
v1.0.1
Published
Parser for the Server-Timing header
Downloads
14
Maintainers
Readme
server-timify
⏱ Parse and stringifying utility methods for the Server-Timing
header. Very forgiving and does not throw any errors for any invalid input.
Install
npm install server-timify
# OR
yarn add server-timify
Usage
import { parse, stringify } from 'server-timify'
parse('cache;desc="Cache Read";dur=23.2')
// [{ name: "cache", description: "Cache Read", duration: 23.2 }]
stringify([{ name: "cache", description: "Cache Read", duration: 23.2 }])
// cache;desc="Cache Read";dur=23.2
Read "Measuring Performance With Server Timing" to learn how to use the Server-Timing
header.
License
The code in this project is released under the MIT License.