New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

errdog

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

errdog - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

1

exampleConfig.js

@@ -25,2 +25,3 @@ /**

extract: function(line) {return line;},
ignore: function(line) {return line.indexOf('to-be-ignored') < 0;}
alerters: [

@@ -27,0 +28,0 @@ [console_],

@@ -60,3 +60,8 @@ /**

tail.on('line', function(line) {
emitter.emit('line', target.extract(line));
line = target.extract(line);
if (target.ignore && target.ignore(line)) {
return;
}
emitter.emit('line', line);
});

@@ -63,0 +68,0 @@

2

package.json
{
"name": "errdog",
"version": "0.1.0",
"version": "0.1.1",
"repository": {

@@ -5,0 +5,0 @@ "type": "git",

@@ -6,2 +6,13 @@ Node Error Dog

```
_=,_
o_/6 /#\
\__ |##/
='|--\
/ #'-.
\#|_ _'-. /
|/ \_( # |"
errdog C/ ,--___/
```
Install

@@ -8,0 +19,0 @@ -------

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