Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

log8js

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

log8js - npm Package Compare versions

Comparing version 2.0.4 to 2.0.5

2

package.json
{
"name": "log8js",
"version": "2.0.4",
"version": "2.0.5",
"description": "a syslog logger helper for node app, work with pm2 verbose",

@@ -5,0 +5,0 @@ "main": "log8js.js",

@@ -20,2 +20,3 @@ # log8js helper

Coffee
```

@@ -29,3 +30,17 @@

```
JS
```
var log8js, logger;
log8js = require('log8js');
logger = log8js.open('appname', 'modulename');
logger.debug('this is debug of app: appname module:modulename');
```
###Open Another log with verbose debug
Coffee
```

@@ -43,1 +58,21 @@ logger = log8js.open 'other_appname', 'other_modulename', 'verbose'

```
JS
```
var logger;
logger = log8js.open('other_appname', 'other_modulename', 'verbose');
logger.debug('this is debug of app: other_appname module:other_modulename');
logger.debug('a debug message');
logger.info('an info message');
logger.warn('a warning message');
logger.error('an error message');
logger.fatal('a fatal message');
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc