Language

classes

if you want to extend a class and use itā€™s method:

class class1 extends parentClass {
 
    constructor() {
        super();
    }
}

Without the super() you are unable to use the parent class their methods.

This super() passes the variables to the constructor of the class which you are extending.

imports in worker threads

This will work fine:

class class1 {
	name;
    constructor(name) {
        this.name = name;
    }
}
 
module.exports = class1;
const class1 = require('filename')

Because you are importing a class.

But if you have the following:

class class1 {
	name;
    constructor(name) {
        this.name = name;
    }
}
const mainObject = new class1("Henk de Hopper");
 
module.exports = mainObject;
const mainObject = require('filename')

This will give you the same object in every file from a worker thread, but when you have 2 worker threads, they will both have a different mainObject. This means you canā€™t share them between threads.

NPM Packages / imports{} and requires()