Navy's framework for Node.js webservers
Go to file Use this template
2022-11-09 13:13:03 +02:00
src saving users 2022-11-09 13:13:03 +02:00
.eslintrc.json meta files 2022-11-06 19:36:13 +02:00
.gitignore meta files 2022-11-06 19:36:13 +02:00
index.js meta files 2022-11-09 11:23:54 +02:00
LICENSE meta files 2022-11-09 11:23:54 +02:00
options.json meta files 2022-11-09 11:23:54 +02:00
package.json meta files 2022-11-09 11:23:54 +02:00
README.md meta files 2022-11-06 19:36:13 +02:00
yarn.lock meta files 2022-11-09 11:23:54 +02:00

Navy's webserver framework

A template repository for creating Node.js based webservers with sharding.

Main components

Controller: /src/controller/Controller.js
Master process, orchestrates the whole program. Takes care of starting up the shards and communication with them.

Shard.js: /src/controller/Shard.js
Manages the forked processes. Essentially a wrapper for ChildProcess.

Server.js: /src/server/Server.js
Main component that runs on the forked processes. Expects a message with a _start property with the startup options to be sent.