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

dnsproxy

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dnsproxy - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

package.json
{
"name": "dnsproxy",
"version": "0.0.1",
"version": "0.0.2",
"description": "A simple DNS proxy server for Node.js",

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

@@ -288,5 +288,5 @@ 'use strict';

Server.prototype.start = function(address, callback) {
Server.prototype.start = function( /*address, callback*/ ) {
responseBuffer = responseBuffer || new Buffer(DNS_BUFFER_SIZE);
this.bind(DNS_SERVER_PORT, address, callback);
this.bind.apply(this, [DNS_SERVER_PORT].concat(Array.prototype.slice.call(arguments, 0)));
}; // }}}

@@ -293,0 +293,0 @@

@@ -10,2 +10,3 @@ node-dns-proxy

npm install dnsproxy
sudo node test.js
```
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