logdb-client
TypeScript icon, indicating that this package has built-in type declarations

0.0.8 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i logdb-client

Weekly Downloads

1

Version

0.0.8

License

none

Unpacked Size

25.1 kB

Total Files

6

Last publish

Collaborators

  • azabroflovski