An open API service indexing awesome lists of open source software.

https://github.com/fabianishere/logging.js

Lightweight logging library for Node.js based on the java.util.logging library.
https://github.com/fabianishere/logging.js

java-logging javascript logging nodejs

Last synced: 2 days ago
JSON representation

Lightweight logging library for Node.js based on the java.util.logging library.

Awesome Lists containing this project

README

          

# logging.js
Logging.js is a lightweight logging library written in Javascript based on the
`java.util.logging` package.

```js
var logger = require("logging-js").get(module);
logger.info("Hello World!");
```

## Installation
Logging.js can be installed by simply running the following command in your
terminal:

```sh
$ npm install --save logging-js
```

## License
This project is licensed under the MIT license. More information can be found
in the `LICENSE` file.