Node JS
How to instrument Tailed from Node with just three lines of code.
Setup
npm i @tailedapp/nodejs-libBasic Usage
// Two of the magic lines of code..
const session = new ConsoleSession();
await session.Start();
console.log('This will be streamed to tailed.live');
// The last one!
session.Stop();
console.log('This will not be streamed to tailed.live');Default Colorization
Customization Options
Last updated