1.0.1 • Published 2 years ago

server-timify v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

server-timify

npm version npm size install size code coverage Release Open in Visual Studio Code

⏱ 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.

FOSSA Status