Skip to content

Commit c688d32

Browse files
committedNov 11, 2023
[INIT] console-kit
0 parents  commit c688d32

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed
 

‎README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# console-kit
2+
3+
`console-kit` will be a tool that will help you logging information on the server and on the client,
4+
with some very easy concepts like tags, levels, colors, and probably saving logs in a file.
5+
6+
We want the lightest library for client-side logging, so we may not use any library for this part, but for server-side we can, since nobody is downloading the library during runtime.

‎index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log("Hello World!");

‎package.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "console-kit",
3+
"version": "0.0.1",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [],
10+
"author": "",
11+
"license": "ISC"
12+
}

0 commit comments

Comments
 (0)
Please sign in to comment.