diff --git a/libraries/js/logsmith/README.md b/libraries/js/logsmith/README.md index 86921ca..7d1cfcb 100644 --- a/libraries/js/logsmith/README.md +++ b/libraries/js/logsmith/README.md @@ -257,14 +257,14 @@ The above code logs a custom log statement To test Logsmith and Logsmith-Monitor in Action, we created this example application. Startup Logsmith Monitor in Docker -```sh +```console docker pull ghcr.io/tanmoysg/logsmith-monitor:v0.0.5 docker run ghcr.io/tanmoysg/logsmith-monitor:v0.0.5 ``` Go to the [`examples`](../examples/) directory. Start the example Express App. -``` +```console node . ``` @@ -277,7 +277,7 @@ Once the Server starts, it gives an endpoint for each logging method. The Endpoi - {express-app-url}/log These can be tested using cURL -``` +```console curl localhost:8096/info ``` diff --git a/libraries/js/logsmith/package-lock.json b/libraries/js/logsmith/package-lock.json index d92908d..1acc9b9 100644 --- a/libraries/js/logsmith/package-lock.json +++ b/libraries/js/logsmith/package-lock.json @@ -1,12 +1,12 @@ { "name": "logsmith", - "version": "0.0.3", + "version": "0.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "logsmith", - "version": "0.0.3", + "version": "0.0.4", "license": "ISC", "dependencies": { "chalk": "^5.0.1", diff --git a/libraries/js/logsmith/package.json b/libraries/js/logsmith/package.json index 75c541b..1261150 100644 --- a/libraries/js/logsmith/package.json +++ b/libraries/js/logsmith/package.json @@ -1,6 +1,6 @@ { "name": "logsmithjs", - "version": "0.0.3", + "version": "0.0.4", "description": "Logging Library for NodeJS Projects with logsmith-monitor support.", "main": "logsmith.js", "type": "module",