A command line tool to spin up a server which can be used with the timing-provider.
npm install timing-provider-serverA command line tool to spin up a server which can be used with the timing-provider.

This command line tool spins up a server which can be used as the signaling server for the timing-provider. It is primarily intended for local testing.
The timing-provider-server package is published on npm. It can be installed like this:
``shell`
npm install timing-provider-server
Afterwards the server can be started by executing the following command:
`shell`
timing-provider-server
It is also possible to run the command above without explicitly installing a local version of this package first like this:
`shell`
npx timing-provider-server
Once the server is up and running it can be used when creating a new TimingProvider.
`js`
const timingProvider = new TimingProvider('ws://localhost:2276');
This option can be used to specify the port to which the server is listening. If this argument is not used 2276 will be used as the default port.
`shell``
timing-provider-server --port 4567