@meadown/logger 1.8.3 → 1.8.4
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.
- package/README.md +12 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,15 +9,18 @@ No dependencies. No config. Import it and you're done.
|
|
|
9
9
|
|
|
10
10
|
## Why this exists
|
|
11
11
|
|
|
12
|
-
I kept writing the same
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
12
|
+
I kept writing the same `console.log` wrapper in every project. Every time.
|
|
13
|
+
Copy, paste, rename. And I still shipped it to production by accident. And I
|
|
14
|
+
still spent ten minutes staring at logs trying to figure out which file they
|
|
15
|
+
came from.
|
|
16
|
+
|
|
17
|
+
At some point I just built the thing I always wanted.
|
|
18
|
+
|
|
19
|
+
One import. No config. No dependencies. It shows you exactly where every log
|
|
20
|
+
came from, and it gets out of the way when you ship.
|
|
21
|
+
|
|
22
|
+
> The full story — the problem, the research, every design decision, and
|
|
23
|
+
> everything that got cut — is in [`docs/STORY.md`](docs/STORY.md).
|
|
21
24
|
|
|
22
25
|
## Features
|
|
23
26
|
|
package/package.json
CHANGED