You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
js-ipfs@0.63 made the jump to become ESM-only. If you are seeing the error message above, it's because you are trying to load ESM code using require from a CJS environment.
Instead you need to either convert your code to ESM and use import, or use the dynamic import function if you cannot convert to ESM.
js-ipfs@0.63
made the jump to become ESM-only. If you are seeing the error message above, it's because you are trying to load ESM code usingrequire
from a CJS environment.Instead you need to either convert your code to ESM and use
import
, or use the dynamicimport
function if you cannot convert to ESM.Please see the upgrade guide for more information.
Note if you are authoring TypeScript and using
import
you also need to ensure that yourtsc
settings result in ESM and not CJS.Please see the TypeScript section of the upgrade guide for more information.
The text was updated successfully, but these errors were encountered: