JohnFlowerful

Results 12 comments of JohnFlowerful

Here's a working patch for those wondering why github exports this PR in a weird way: https://gist.github.com/JohnFlowerful/254160de725992d7f943a07673561dc4

```rm -rf /path/to/flood/node_modules``` then ```npm install``` again. If that doesn't work, try ```rm -rf ~/.npm``` as well. I rebuilt node-sass as well, but I don't think that was required.

Can reproduce on my end too.

Using a delay does not work in my case: > dht.mode.set = on > schedule = dht_node, 60, 0, dht.add_node=router.bittorrent.com:6881 DHT appears to be 'on': > % rtxmlrpc dht.statistics --repr...

It was fine with at least curl 7.84.0. This version (amongst others) has been [removed from package managers](https://curl.se/docs/security.html). Maybe a curl regression similar to #580 New torrents start working eventually...

My issue is fixed with now in-tree [net-misc/curl-7.88.0-r1](https://packages.gentoo.org/packages/net-misc/curl). I'm not sure of the cause, but curl's issue tracker had a few people reporting inconsistencies between 7.86 and 7.87. I'd be...

You could pack and dist the npm-cache directory like the [www-apps/vaultwarden-web](https://github.com/gentoo-mirror/guru/tree/master/www-apps/vaultwarden-web) GURU package does. There's also [NixOS's method](https://github.com/NixOS/nixpkgs/tree/master/pkgs/build-support/node/fetch-npm-deps) to fetch the individual nodejs dep tarballs and generate an npm-cache directory....

Couldn't you download and `npm install` all the nodejs dep tarballs without offline-mirror-registry? It does mean manually installing the dependencies (and maintaining the required deps somehow) but it should work.

> > Couldn't you download and npm install all the nodejs dep tarballs without offline-mirror-registry? It does mean manually installing the dependencies (and maintaining the required deps somehow) but it...

> The mirror looks like a more promising option. I've already started rewriting it and integrating functionality that will show the missing packages in package.json. I think this will significantly...