The following code:
import fetch from 'node-fetch'
;(async function fn() {
const response = await fetch('https://learnitmyway.com/learning-material-software-development/')
const data = await response.json()
console.log({ data })
})()
results in: UnhandledPromiseRejectionWarning: SyntaxError: Unexpected token < in JSON at position 0