Conduct your own research to find out how it can be possible to use the ES6 import/export syntax in Node.js, instead of the CommonJS require/exports syntax. code example
Example: module.exports equivalent es6
exports["default"] = A; module.exports = exports["default"];