• Stars
    star
    245
  • Rank 164,313 (Top 4 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created about 4 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

📑 Zero-dependency, fast logging library for Node, Browser and Workers

diary

Dear diary, you make my logging so easy

js downloads gzip size brotli size

This is free to use software, but if you do like it, consisder supporting me ❤️

sponsor me buy me a coffee

⚡ Features

⚙️ Install

npm add diary

🚀 Usage

import { info, diary, enable } from 'diary';

// 1️⃣ Choose to enable the emission of logs, or not.
enable('*');

// 2️⃣ log something
info('this important thing happened');
// ~> ℹ info  this important thing happened

// Maybe setup a scoped logger
const scopedDiary = diary('my-module', (event) => {
  if (event.level === 'error') {
    Sentry.captureException(event.error);
  }
});

// 3️⃣ log more things
scopedDiary.info('this other important thing happened');
// ~> ℹ info  [my-module] this other important thing happened
Node users

The enable function is executed for you from the DEBUG environment variable. And as a drop in replacement for debug.

DEBUG=client:db,server:* node example.js

🔎 API

diary(name: string, onEmit?: Reporter)

Returns: log functions

A default diary is exported, accessible through simply importing any log function.

Example of default diary
import { info } from 'diary';

info("i'll be logged under the default diary");

name

Type: string

The name given to this diary—and will also be available in all logEvents.

onEmit (optional)

Type: Reporter

A reporter is run on every log message (provided its enabled). A reporter gets given the LogEvent interface:

interface LogEvent {
  name: string;
  level: LogLevels;

  messages: any[];
}

Note: you can attach any other context in middleware.

Example
import { diary, default_reporter } from 'diary';
const scope = diary('scope', (event) => {
  event.ts = new Date();
  return default_reporter(event);
});

Errors (for error and fatal) there is also an error: Error property.

log functions

A set of functions that map to console.error, console.warn, console.debug, console.info and console.info. Aptly named;

fatal, error, warn, debug, info, and log. All of which follow the same api signature:

declare logFunction(message: object | Error | string, ...args: unknown[]): void;

All parameters are simply spread onto the function and reported. Node/browser's built-in formatters will format any objects (by default).

info('hi there'); // ℹ info  hi there
info('hi %s', 'there'); // ℹ info  hi there
info('hi %j', { foo: 'bar' }); // ℹ info hi { "foo": "bar" }
info('hi %o', { foo: 'bar' }); // ℹ info hi { foo: 'bar' }
info({ foo: 'bar' }); // ℹ info { foo: 'bar' }

diary (optional)

Type: Diary

The result of a calling diary;

enable(query: string)

Type: Function

Opts certain log messages into being output. See more here.

💨 Benchmark

via the /bench directory with Node v20.2.0

JIT
✔ diary  ~ 1,434,414 ops/sec ± 0.16%
✔ pino   ~    47,264 ops/sec ± 0.02%
✔ bunyan ~     9,644 ops/sec ± 0.01%
✔ debug  ~   444,612 ops/sec ± 0.22%

AOT
✔ diary  ~ 1,542,796 ops/sec ± 0.29%
✔ pino   ~   281,232 ops/sec ± 0.03%
✔ bunyan ~   588,768 ops/sec ± 0.16%
✔ debug  ~ 1,287,846 ops/sec ± 0.24%

AOT: The logger is setup a head of time, and ops/sec is the result of calling the log fn. Simulates long running process, with a single logger. JIT: The logger is setup right before the log fn is called per op. Simulates setting up a logger per request for example.

Related

License

MIT © Marais Rossouw

More Repositories

1

meros

🪢 A fast utility that makes reading multipart responses simple
TypeScript
182
star
2

workers-logger

🪵 Fast effective logging for Cloudflare Workers
TypeScript
47
star
3

rian

👣 Effective tracing for the edge and origins
TypeScript
33
star
4

relay-sentry

⚛ Relay log function that enriches Sentry with Relay life cycles and GraphQL data
TypeScript
29
star
5

ports-list

28
star
6

piecemeal

🪀 Send your data piecemeal
TypeScript
24
star
7

swrr

⏩ Stale While Revalidated Resources — keeps data fast
TypeScript
24
star
8

mosaic.js

Delaunay triangulation shaded, from a light source based on mouse cursor.
TypeScript
24
star
9

dldr

🧩 A tiny/fast dataloader implementation
TypeScript
20
star
10

storybook-addon-grid

⚜️ Column guides that help you align your stories
TypeScript
20
star
11

configs-webpack-plugin

Runtime Config mangement for webpack projects
TypeScript
15
star
12

tctx

Blazing fast traceparents for use in w3c Trace Context
TypeScript
12
star
13

async-boundary

🏃‍♂️ A React async-boundary that couples an error-boundary as well as a suspense container
TypeScript
12
star
14

graphql-workers

⚛️ graphql-workers puts graphql on the edge
TypeScript
7
star
15

object-identity

#️⃣ Object hashing for structural equality
TypeScript
7
star
16

fgs

Fetch GraphQL Schema from a GraphQL HTTP Endpoint from grphql-config that is Relay (rust) aware.
TypeScript
6
star
17

razzle-play

TypeScript
4
star
18

rollup-plugin-treat

TypeScript
4
star
19

tabling

Let's table this object till a later date
TypeScript
3
star
20

apollo-link-multipart

TypeScript
3
star
21

web-vitals

Cloudflare Workers enabled web-vitals
TypeScript
3
star
22

git.ski

TypeScript
2
star
23

build-header

🙃 Logs a pretty header to your build scripts
JavaScript
2
star
24

uni-days

Bits n bobs from my software written whilst studying at QUT
HTML
2
star
25

git-remote-fetcher

A tool to help me keep my git remote's synced
Rust
2
star
26

dotfiles

⚡ my env
Shell
2
star
27

.github

🩺 The community health files and GitHub shared configuration files
2
star
28

posthtml-obfuscate

PostHTML plugin that obfuscates emails.
JavaScript
2
star
29

website

🌏 personal brand, and guinea pig
HTML
2
star
30

obs-count-to-timer

An OBS script to count to a specified time
Lua
1
star
31

configs

my shared config files — prettier, tsconfig, ...
1
star
32

posthtml-json

PostHTML plugin that does stuff with JSON.
JavaScript
1
star
33

mar.fyi

⚙️ My home brand url shortening service
Rust
1
star
34

treat-repro

JavaScript
1
star
35

auth0-repro

JavaScript
1
star