Resolving ‘SyntaxError: Cannot use import statement outside a module’
Syntax error ‘cannot use import statement outside a module’ is one of the very common errors occurring when you work with Node.js. Did you know that JavaScript uses two types of modules: one is the ES or ES6 module, and the other is the CommonJS module? The above-mentioned error occurs when we try to use […]
Resolving ‘SyntaxError: Cannot use import statement outside a module’ Read More »