首页 > 解决方案 > ipfs npm package with Angular not working

问题描述

I'm trying to use the ipfs package in my angular app, but it doesn't compile. I first had issues with installing ipfs with npm install ipfs because it couldn't find certain packages. It did install by installing these packages first: npm install node-pre-gyp wrtc ipfs

After which I can import it and use it in the code with import * as IPFS from 'ipfs'

The problem is that angular doesn't want to compile:

enter image description here

enter image description here

These are just a fraction of the errors that it gives. I already tried "compilerOptions": { //.... "esModuleInterop": true, "allowSyntheticDefaultImports": true },

But no success.

标签: angularnpmipfsjs-ipfs

解决方案


推荐阅读