⏱ Parse and stringifying utility methods for the Server-Timing
header. Very forgiving and does not throw any errors for any invalid input.
npm install server-timify
# OR
yarn add server-timify
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.
The code in this project is released under the MIT License.