Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

require() of ES modules is not supported when importing node-fetch

// node-fetch v3 recently stopped support for the
// require way of importing it in favor of ES Modules.

// Old:
const fetch = require('node-fetch');

// New:
import fetch from "node-fetch";
 
PREVIOUS NEXT
Tagged: #ES #modules #supported #importing
ADD COMMENT
Topic
Name
5+3 =