Live data from Hacker News

Can anyone confirm that the yarnpkg registry is (partly) down?

status.yarnpkg.com

1–7 of 7 posts

Re: Can anyone confirm that the yarnpkg registry is (partly) down?

#6
post #5

quick fix would be to use NPM directly (create a `.yarnrc` file with `registry " https://registry.npmjs.org/"` )

I think this only works if you're doing a clean yearn install. If you have a yarn.lock file already generated, chances are every package is pointing to registry.yarnpkg.com instead.

Re: Can anyone confirm that the yarnpkg registry is (partly) down?

#7
post #6
post #5

quick fix would be to use NPM directly (create a `.yarnrc` file with `registry " https://registry.npmjs.org/"` )

I think this only works if you're doing a clean yearn install. If you have a yarn.lock file already generated, chances are every package is pointing to registry.yarnpkg.com instead.

Ah, yes. Didn't thought about that.