@trace-it/lowdb-adapter

Lowdb adapter for trace-it

Usage no npm install needed!

<script type="module">
  import traceItLowdbAdapter from 'https://cdn.skypack.dev/@trace-it/lowdb-adapter';
</script>

README

trace-it-lowdb-adapter

:clock1: Lowdb adapter for Trace-it :mag_right:

Release npm (scoped) NPM npm

This is a lowdb adapter for the performance measuring tool trace-it.

INSTALL

You can install this storage adapters with npm:

npm install @trace-it/lowdb-adapter

USAGE

As the storage adapters for trace-it are plugins you only have to plug this package in on initialization of trace-it.

import * as TraceIt from 'trace-it';
import { LowDbAdapter } from '@trace-it/lowdb-adapter';

// For lowdb the dbName is used to specify the json file
const adapter = new LowDbAdapter({ dbName: './perf.json'});
TraceIt.init(adapter);
const transaction = TraceIt.startTransaction('root');
// ...

For more information look at the README of the core package.

You are looking for other adapters? Look here.

Changelog

See changes for each version in the release notes.

License

MIT - Matthias Hecht