Cannot install webtorrent in angular

76 Views Asked by At

Cannot install npm install webtorrent tried older versions and hybrid too.

this is the error I got

enter image description here

Thank you for helping me in advance.

1

There are 1 best solutions below

1
Lokendra Singh Panwar On

You should take a look at the webpack section https://github.com/feross/webtorrent. It explains you need to add couple of lines of configuration to make it work.

{
  target: 'web',
  node: {
    fs: 'empty'
  },
  module: {
    loaders: [
      // make sure to install the 'json-loader' package: npm install json-loader
      {
        test: /\.json$/,
        loader: 'json'
      }
    ]
  }
}