0.0.12 • Published 5 months ago

logdb-client v0.0.12

Weekly downloads
-
License
-
Repository
-
Last release
5 months ago

Getting Started

This guide will help you get started with logdb-client in a few easy steps

Installation

To begin, you'll need to install package

via npm

$ npm i logdb-client

via yarn

$ yarn add logdb-client

via bun

$ bun i logdb-client

Basic Usage

Here's a simple example to get you started

Import

First, import the library into your project

import { LogDB } from 'logdb-client' // ESM
// or
const { LogDB } = require('logdb-client') // CJS

Example Code

Here's a basic example demonstrating how to use logdb-client

import { LogDB } from 'logdb-client'

const logDB = new LogDB({
  url: 'https://your-logdb-server.com',
  token: 'secret-token-here',
})


logDB.on('event', (event: EventContext) => {
	console.log(event.id, event.type)
})

logDB.listen() // run for listen events

Go to documentation for more.

0.0.10

5 months ago

0.0.12

5 months ago

0.0.9

9 months ago

0.0.8

11 months ago

0.0.7

12 months ago

0.0.6

12 months ago

0.0.5

12 months ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago