0.1.0 • Published 4 years ago

trackerr-sqlite v0.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

trackerr-sqlite

trackerr-sqlite provides SQLite3 support for trackerr. It implements the ExceptionStore interface in trackerr-abstract-exception-store.

Installation

npm install trackerr-sqlite --save

Usage

To create and use an SQLite store:

import { Client } from 'trackerr';
import { SQLiteStore } from 'trackerr-sqlite';

const trackerr = new Client(new SQLiteStore('db.sql'));