I am Using node-fetch for some reason, I do it on simple HTMl and js not npm install. I want to use it with cdn. below attachments, I used this approach and not logging anything.
In html
<script type="module" src="module.js"></script>
In module.js
import nodeFetch from 'https://cdn.jsdelivr.net/npm/node-fetch@3.3.0/+esm';
console.log(nodeFetch)
console.log("asdsad"); // not log anything
WHat is the best way to use it with cdn, I confused, and tried to all day.