@logtape/logtape 2.0.0-dev.477 → 2.0.0-dev.479

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -9,8 +9,13 @@ LogTape
9
9
  [![GitHub Actions][GitHub Actions badge]][GitHub Actions]
10
10
  [![Codecov][Codecov badge]][Codecov]
11
11
 
12
- LogTape is a logging library for JavaScript and TypeScript. It provides a
13
- simple and flexible logging system that is easy to use and easy to extend.
12
+ LogTape is a logging library for JavaScript and TypeScript designed with
13
+ a library-first philosophy. Unlike traditional loggers, LogTape is
14
+ unobtrusive—libraries can safely log without any configuration, while
15
+ applications retain full control. With zero dependencies and universal runtime
16
+ support, it works seamlessly across Deno, Node.js, Bun, browsers, and edge
17
+ functions.
18
+
14
19
  The highlights of LogTape are:
15
20
 
16
21
  - *Zero dependencies*: LogTape has zero dependencies. You can use LogTape
@@ -101,6 +106,7 @@ list of the packages in the LogTape monorepo:
101
106
  | Package | JSR | npm | Description |
102
107
  | ---------------------------------------------------------- | ------------------------------------ | ------------------------------------ | -------------------------- |
103
108
  | [*@logtape/logtape*](/packages/logtape/) | [JSR][jsr:@logtape/logtape] | [npm][npm:@logtape/logtape] | Core logging functionality |
109
+ | [*@logtape/adaptor-log4js*](/packages/adaptor-log4js/) | [JSR][jsr:@logtape/adaptor-log4js] | [npm][npm:@logtape/adaptor-log4js] | [log4js] adapter |
104
110
  | [*@logtape/adaptor-pino*](/packages/adaptor-pino/) | [JSR][jsr:@logtape/adaptor-pino] | [npm][npm:@logtape/adaptor-pino] | [Pino] adapter |
105
111
  | [*@logtape/adaptor-winston*](/packages/adaptor-winston/) | [JSR][jsr:@logtape/adaptor-winston] | [npm][npm:@logtape/adaptor-winston] | [winston] adapter |
106
112
  | [*@logtape/cloudwatch-logs*](/packages/cloudwatch-logs/) | [JSR][jsr:@logtape/cloudwatch-logs] | [npm][npm:@logtape/cloudwatch-logs] | [AWS CloudWatch Logs] sink |
@@ -121,6 +127,9 @@ list of the packages in the LogTape monorepo:
121
127
 
122
128
  [jsr:@logtape/logtape]: https://jsr.io/@logtape/logtape
123
129
  [npm:@logtape/logtape]: https://www.npmjs.com/package/@logtape/logtape
130
+ [jsr:@logtape/adaptor-log4js]: https://jsr.io/@logtape/adaptor-log4js
131
+ [npm:@logtape/adaptor-log4js]: https://www.npmjs.com/package/@logtape/adaptor-log4js
132
+ [log4js]: https://log4js-node.github.io/log4js-node/
124
133
  [jsr:@logtape/adaptor-pino]: https://jsr.io/@logtape/adaptor-pino
125
134
  [npm:@logtape/adaptor-pino]: https://www.npmjs.com/package/@logtape/adaptor-pino
126
135
  [Pino]: https://github.com/pinojs/pino
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@logtape/logtape",
3
- "version": "2.0.0-dev.477+849c91e3",
4
- "description": "Simple logging library with zero dependencies for Deno/Node.js/Bun/browsers",
3
+ "version": "2.0.0-dev.479+1100fe10",
4
+ "description": "Unobtrusive logging library with zero dependencies—library-first design for Deno/Node.js/Bun/browsers/edge",
5
5
  "keywords": [
6
6
  "logging",
7
7
  "log",