My own interface for playing SpaceTraders.
I don't currently have the interface hosted anywhere.
Browser testing performed exclusively on modern Firefox. Other browsers may or may not work properly.
Spiff requires running a server. Space Traders involves automation, but the automation happens client-side, which means that it stops if the client isn't running.
I want to play on my laptop, but I don't want to leave my laptop running all the time. So I am going to run a server that interfaces with the SpaceTraders servers and then have my web app interface with my server.
The server can be started by running npm run start.
Remember that the argument list should be preceded by --. Ex: npm start -- --insecure.
--cert PATHThe path to the certificate to use for encryption. Ignored if--insecureis specified.--dbpath PATHThe path to the sqlite3 database to use. If non-existent, the database will be created at this path. This must be specified if the environment doesn't specify a data directory via the_B_UTIL_DATA_DIRenvironment variable (which is set automatically when my utilities repo).--host HOSTThe hostname to service requests on.--insecureUse HTTP instead of HTTPS.--key PATHThe path to the private key to use for encryption. Ignored if--insecureis specified.--port PORTThe port number to service requests on.