A node.js connector to Varnish using the Varnish telnet management protocol
npm install node-varnishnode-varnish
==
A node.js connector to Varnish using the Varnish telnet management protocol.
``javascript
var Varnish = require('node-varnish');
var client = new Varnish.VarnishClient('127.0.0.1', MANAGEMENT_PORT[, secret]);
client.on('ready', function() {
client.run_cmd('purge obj.http.X == test', function(){});
});
`
For more usage examples, see the tests.
Install
--
```
npm install node-varnish
Dependencies
--
* node.js >=4.x
* varnish >=2.x
Contributors
--