1.6.2 • Published 7 years ago

server-starter v1.6.2

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

server-starter

A simple tool for starting node servers on a port and optionally hostname or a unix socket.

This tool starts a server. If a unix socket is specified, and the file already exists, it is detected, tested to see if it is alive, and removed if it is indeed dead. It also allows setting a file mode and owner for the socket after creation.

Install

yarn add server-starter
npm install server-starter --save

Usage

server-starter works on any "server" that has a ".listen(..)" method that takes a first argument that is a port number or socket file and an optional second argument, which is only valid if a port number was specified as the first argument, that is the network device to listen on.

const ServerStarter = require('server-starter');

const server = new require('net').Server();

const socketOptions = {
  listen: 'path/to/socket',
  socketMode: 0770,
  socketOwner: {
    user: 1000,
    group: 1000,
  }
}
const ipOptions = {
  listen: 9001,
  hostname: '127.0.0.1',
}

const options = socketOptions || ipOptions;

ServerStarter(server, options, (err, info, extra) => {
  if (err) {
    console.log(err, info, extra);
  } else {
    console.log('Listening:', info);
  }
});

You can use strings for socketOwner user or group.

Options

The listen option allows switching between IP socket or unix socket. Each has an optional extra settings.

IP Options

  • listen - Integer Port to listen on
  • hostname - String

Socket Options

  • listen - String Specify socket filename
  • socketMode - Integer passed to fs.chmod - octal notation is easiest
  • socketOwner passed to fs.chown
    • user - Integer or String
    • group - Integer or String
1.6.2

7 years ago

1.6.1

7 years ago

1.6.0

7 years ago

1.5.3

7 years ago

1.5.2

7 years ago

1.5.1

7 years ago

1.5.0

7 years ago

1.4.1

7 years ago

1.4.0

7 years ago

1.3.1

8 years ago

1.3.0

8 years ago

1.2.4

8 years ago

1.2.3

10 years ago

1.2.2

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.0

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago

1.0.0-0

10 years ago