What is the meaning of “Error [ERR_REQUIRE_ESM]: require() of ES Module […] not supported.”?
Summary A developer encounters Error [ERR_REQUIRE_ESM] when attempting to import the google-spreadsheet package using require() in a Node.js environment. This error occurs because the google-spreadsheet library is published as an ES Module (ESM) (using import syntax), while the project is running in CommonJS mode (using require syntax). Node.js does not allow mixing these two module … Read more