class System { constructor() { console.log('hi from system b'); } static start() { console.log('starting a system'); } } module.exports = System;