Quickstart Guide

Integrate LogPulse into your React or Next.js app in under 2 minutes.

01. Installation

npm install @vishal6803/logpulse-browser

02. Initialize

import LogPulse from '@vishal6803/logpulse-browser';

LogPulse.init({
  apiKey: 'YOUR_PROJECT_ID',
  endpoint: 'https://api.uselogpulse.tech/api/logs'
});

Data_Schema

TABLE logs {

id: uuid [primary key]

user_id: uuid [ref: > users.id]

message: text

level: varchar(10) // info, warn, error

timestamp: timestamp_tz

}