@rasri/log
v1.3.0
Published
Simple universal logger for node/browser, with prefix, time and colors
Downloads
4
Readme
Simple logger
Simple universal and extra-light (1kB) logger for node/browser, with prefix, time and colours.
This simple utility is <1kB and is optimised to disable all logging in production, display log time, line of origin, prefix and sane colors on the server console.
Also, it is tree-shacked and has the same API as the console
native
object.
We use it with Next.js and Vercel, and we don't need the server logs on production because we have Sentry for that, and disabling them reduces our cost.
Usage
import createLogger from "@unly/logger";
const logger = createLogger({
prefix: "My lib",
shouldPrint: () => process.env.NODE_ENV !== "production", // Only print in non-production env (default behavior)
});
Make sure to check our advanced examples below!
Example color output (server console)
This is an example of the default color behaviour (see
scripts/show-colors.js
).
Recommended usage (pro tips)
We recommend adapting:
- The
prefix
option, using the filename, the class name, the module name, etc. to help locate the origin of the message. - The
shouldPrint
option to your needs. By default, it won't print anything in production environment. - The
colorize
option, if you want to customize the colors used on the server. SeecolorizeFallback
for inspiration.
Installation
yarn add @unly/logger
or
npm install @unly/logger
Peer dependencies
You'll also need to install those peer dependencies:
yarn add chalk
We decided to allow you to decide what version of chalk you want to use for greater flexibility.
Options
Here are a few options to adapt the lib to your own needs.
export type LoggerOptions = {
prefix?: string;
disableAutoWrapPrefix?: boolean;
colorize?: Colorize;
shouldPrint?: ShouldPrint;
shouldShowTime?: ShouldShowTime;
timeFormat?: TimeFormat;
};
export type Colorize = (mode: PrintMode, prefixes: string[]) => string[];
export type ShouldPrint = (mode: PrintMode) => boolean;
export type ShouldShowTime = () => boolean;
export type TimeFormat = () => string;
Default options
prefix: None
disableAutoWrapPrefix: `false`
colorize: Colorize for server console only, see implementation
shouldPrint: Prints if NODE_ENV !== 'production'
shouldShowTime: Enabled
timeFormat: Using ISO string
Advanced configuration
You can define the following environment variables:
UNLY_SIMPLE_LOGGER_ENV
: Will be used instead ofNODE_ENV
, to configure the default behavior ofshouldPrint
.- E.g: If set to
APP_STAGE
, then will compareAPP_STAGE
withproduction
. IfAPP_STAGE = 'staging'
(ordevelopment
), thenshouldPrint
will print by default. IfAPP_STAGE = 'production'
, thenshouldPrint
will not print by default. If a customshouldPrint
is provided, then it will ignoreUNLY_SIMPLE_LOGGER_ENV
as it won't rely on the defaultshouldPrint
implementation.
- E.g: If set to
SIMPLE_LOGGER_SHOULD_SHOW_TIME
: Will be used to configure whether to show the time by default.- E.g: If set to
false
, then will not show the time.
- E.g: If set to
Advanced examples
Those advanced examples are taken from actual implementation in production-grade applications.
Application-wide logger
If you want to define your config only once and reuse it everywhere across your app, you can write a proxy, see below:
logger.ts
import createLogger, { Logger } from "@unly/logger";
/**
* Custom logger proxy.
*
* Customize the @unly/logger library by providing app-wide default behavior.
*
* @param fileLabel
*/
export const createLogger = ({ fileLabel }: { fileLabel: string }): Logger => {
return createLogger({
prefix: fileLabel,
shouldPrint: (mode) => {
return process.env.NEXT_PUBLIC_APP_STAGE !== "production";
},
});
};
someFile.ts
import { createLogger } from "../logger";
const fileLabel = "someFile";
const logger = createLogger({
fileLabel,
});
logger.warn(`Oops, a warning!`, { x: 1 });
Silent all logs during tests (Jest)
Similar to the previous example, the createLogger
can be used to change the
behaviors for tests.
In the below example, the NODE_ENV
equals test
during tests
(when running yarn test
)
and it makes it easy to change the behavior to use console
instead of the
logger
in such case. Combined with
other configuration,
it allows to silent all logs when using either console
or logger
during
tests.
logger.ts
/**
* Custom logger proxy.
*
* Customize the @unly/logger library by providing app-wide default behavior.
*
* @param fileLabel
*/
export const createLogger = ({ fileLabel }: { fileLabel: string }): Logger => {
// Mute logger during tests, to avoid cluttering the console
if (process.env.NODE_ENV === "test") {
return global.muteConsole();
}
return createLogger({
prefix: fileLabel,
shouldPrint: (mode) => {
return process.env.NEXT_PUBLIC_APP_STAGE !== "production";
},
});
};
Contributing
We gladly accept PRs, but please open an issue first, so we can discuss it beforehand.
Changelog
No changelog for now. WIP. Thinking of using https://github.com/semantic-release/semantic-release.
Releases versioning
We follow Semantic Versioning. (major.minor.patch
)
License
Vulnerability disclosure
Contributors and maintainers
This project is being authored by:
- [Unly] Ambroise Dhenain (Vadorequest) (active)
[ABOUT UNLY]
Unly is a socially responsible company, fighting inequality and facilitating access to higher education. Unly is committed to making education more inclusive, through responsible funding for students.
We provide technological solutions to help students find the necessary funding for their studies.
We proudly participate in many TechForGood initiatives. To support and learn more about our actions to make education accessible, visit :
- https://twitter.com/rasreee
- https://www.facebook.com/rasreee/
- https://www.linkedin.com/company/unly
- Interested to work with us?
Tech tips and tricks from our CTO on our Medium page!