Jump to content
Search Community

Business https://npm.greensock.com/ registry is down

Carlos Lorca test
Moderator Tag

Recommended Posts

5 minutes ago, Prasanna said:

Hello @Meet Bhatt, yarn tries to install all packages when you run the install command. That's likely the reason why .tgz install failed.

 

Regarding the vercel issue, can you try to follow the steps mentioned in this article and see if that helps? https://blog.privjs.com/article/how-to-install-club-greensock-packages-on-vercel

 

 

Thanks for the quick turnaround @Prasanna. So I have been deploying on vercel for months now. Only since earlier today have I been getting errors. First it was a 502. After your notification of it being fixed, its a 403 now :(

I tried generating a new token from the dashboard just to check if that was the problem. That didn't work too

Edited by Meet Bhatt
Link to comment
Share on other sites

3 minutes ago, Prasanna said:

Hello @Meet Bhatt, yarn tries to install all packages when you run the install command. That's likely the reason why .tgz install failed.

 

Regarding the vercel issue, can you try to follow the steps mentioned in this article and see if that helps? https://blog.privjs.com/article/how-to-install-club-greensock-packages-on-vercel

 

 

I tried an npm install too just to check, same thing - it was still trying to reach the registry. Though that's not an issue anymore.

Link to comment
Share on other sites

6 minutes ago, Meet Bhatt said:

First it was a 502. After your notification of it being fixed, its a 403 now :(

Okay sorry this was a problem on my end. The lockfile had been messed up while I was frantically trying to install the package. That was causing the errors on vercel.

Thanks folks!

  • Like 3
Link to comment
Share on other sites

  • 3 weeks later...
  • 1 year later...

I just purchased Business license and I cannot install in Azure pipelines. I'm using a dockerfile, nextjs project, but I get these errors in my Azure pipeline:

Please help I need to stage my project for a client review! I created the .npmrc file with my token.

Thanks!

##[error]#13 32.00 npm ERR! 404 Not Found - GET https://registry.npmjs.org/@gsap%2fbusiness - Not found
##[error]#13 32.00 npm ERR! 404
##[error]#13 32.00 npm ERR! 404 '@gsap/business@^3.12.5' is not in this registry.
##[error]#13 32.00 npm ERR! 404
##[error]#13 32.00 npm ERR! 404 Note that you can also install from a
##[error]#13 32.00 npm ERR! 404 tarball, folder, http url, or git url.
Link to comment
Share on other sites

Hi @denglertarea23

 

I noticed two problems: 

  1. You don't have a "Business" Club GSAP membership, but you're trying to install the members-only package via the private repository. You don't have access to that. You must sign up first. https://gsap.com/pricing
  2. You must not have configured the .npmrc file properly, because according to your error code, it's trying to find that package in the main npmjs.org registry instead of the private npm.greensock.com registry. Make sure you follow the installation instructions carefully. https://gsap.com/install 
Link to comment
Share on other sites

Thanks for looking into this Jack, you pointed me in the right direction:

 

I forgot to copy .npmrc file prior to building in my Dockerfile:

FROM node:18-alpine AS deps
WORKDIR /app
COPY package.json ./
COPY .npmrc ./
RUN npm install

 

I added COPY .npmrc ./ and everything works fine. 

Kind of a "duh" moment!

 

I do have a business account, my problem was related to .npmrc

 

 

Thanks again for the speedy reply!

Daniel

 

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...