-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
46 lines (39 loc) · 906 Bytes
/
index.js
File metadata and controls
46 lines (39 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* Primary file for the API
*/
/**
* Side remark - how to make a JS class:
*
class Point {
constructor(x, y) {
this.x = x;
this.y = y;
}
}
let myPoint = new Point(1, 2);
console.log(myPoint);
*
*/
// Dependencies
const server = require("./lib/Server");
const workers = require("./lib/Workers");
// Declare the app
class App {
// Init
constructor() {
// Start the server
server.init();
(async () => {
try {
// Start the workers
await workers.init();
// Send log to console in blue
console.log("\x1b[36m%s\x1b[0m", "Workers status: running")
} catch (e) {
console.error(e);
console.error("Workers status: terminated with error")
}
})();
}
}
module.exports = new App();