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
yarn add server-timify
Usage
import { parse, stringify } from 'server-timify'
parse('cache;desc="Cache Read";dur=23.2')
stringify([{ name: "cache", description: "Cache Read", duration: 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.
