skip to Main Content

I tried to install the package "@react-native-commuity/slider" in my project, but with NPM and Yarn install, I get a 404 error:

NPM error

Yarn error

I tried to check the URL link but it returns a 404 not found. What can I do to resolve this error?

2

Answers


  1. There is a spelling mistake in the package name. Try this

    yarn add @react-native-community/slider
    

    or

    npm install @react-native-community/slider
    
    Login or Signup to reply.
  2. It looks like that package has been deprecated and they recommend using a community package instead

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search