0.0.2 • Published 4 years ago

lstn v0.0.2

Weekly downloads
5
License
Unlicense
Repository
github
Last release
4 years ago

lstn

lstn makes it more straightforward to listen on unix sockets by deleting old sockets when present and setting the mode of the created socket file.

Usage

lstn(server, socket, mode);

// Instead of
server.listen("/path/to/socket.sock", function(err){ /* ... */ });

// do it like this
var lstn = require("lstn");

lstn(server, "/path/to/socket.sock", 0o777, function(err){ /* ... */ })

When you use port and hostname arguments instead, they just get passed through.