Error importing fetchp

Trying to get around CORS but importing fetchp directly shows a runtime error. Is this option no longer available?

fetchp requires your notebook to be public. I would recommend to use https://corsproxy.io/ instead:

corsUrl = url => `https://corsproxy.io?${encodeURIComponent(url)}`
fetch(corsUrl(`https://github.com`)).then(r => r.text())