Socket
Socket
Sign inDemoInstall

nodebb-plugin-freelog

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodebb-plugin-freelog - npm Package Compare versions

Comparing version 0.0.14 to 0.0.15

10

index.js

@@ -52,6 +52,10 @@ const plugin = {};

headers: { 'content-type': 'application/json' }
}).then(next);
}).then(data => next(null, data)).catch(error => next(error));
},
function(data) {
console.log(data.status, data.data.toString());
function(error, data) {
if (error) {
console.log(error);
} else {
console.log(data.status, data.data.toString());
}
}

@@ -58,0 +62,0 @@ ]);

@@ -5,3 +5,3 @@ {

"description": "NodeBB Forum",
"version": "0.0.14",
"version": "0.0.15",
"homepage": "http://www.nodebb.org",

@@ -8,0 +8,0 @@ "repository": {

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