Start here
Getting started
Install the library, create a zero-config logger, then enable Mongo if you need queryable persistence.
npm
Install for agents & tooling
Knowledge SDK — install as a devDependency only (not a production runtime).
npm i -D @x12i/logxer-docs
Less recommended Download the full library as Markdown Useful when working with a web LLM assistant that cannot install packages — paste or attach the file instead of using the SDK.
npm install @x12i/logxer
import { createLogxer } from '@x12i/logxer';
const log = createLogxer(
{ packageName: 'MY_APP', envPrefix: 'MY_APP' }
);
log.info('hello');
Knowledge SDK (devDependency only):
npm i -D @x12i/logxer-docs