Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jordanhandy/my-simple-logger-module
simple logger with timestamp
https://github.com/jordanhandy/my-simple-logger-module
Last synced: 1 day ago
JSON representation
simple logger with timestamp
- Host: GitHub
- URL: https://github.com/jordanhandy/my-simple-logger-module
- Owner: jordanhandy
- Created: 2020-03-02T23:50:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-03-03T00:03:06.000Z (over 4 years ago)
- Last Synced: 2024-10-31T17:52:09.664Z (14 days ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Logger Module
## Description
This logs the timestamp of any given item, sent to the console, as an extension of standard ```console.log()```
## Usage
```
var logMe = require("my-simple-logger");
logMe.log("Test")
```
Result:
```
Test - 19:20
```