Project Setup

To get started, install the Logdash SDK in your project and create a new logger instance.

0. Install the Logdash SDK
npm i @logdash/core
1. Setup fresh logger instance
import { createLogDash } from '@logdash/core';

const { logger } = createLogDash({
	apiKey: "mayny5j9orsyLpoXOrtV2jAh9o5kitBT"
});

logger.info('Hello logdash!');
2. Capture logs
Listening for logs...