0

I noticed that while trying to install redux-offline, the documentation says to install the package using :
npm install --save @redux-offline/redux-offline

While this article says to install the package without the '@' before package name
npm install --save redux-offline

I wanted to know what the difference is between both, if any.

Roshin Jay
  • 659
  • 1
  • 6
  • 12
  • 2
    That's package scope. Read more here: https://docs.npmjs.com/using-npm/scope.html . THe package `redux-offline` might have been moved to `@redux-offline` scope, that's why you need to use the first one. – Ayush Gupta Aug 21 '20 at 18:32

1 Answers1

2

@redux-offline/redux-offline here you can read this quote

Redux Offline is now being maintained by a community-driven team. The new versions of the library will now be available under the npm organization @redux-offline. Big thank you to @jevakallio for creating this amazing library in the first place.

As you can see here redux-offline, this package updated 3 years ago, when @redux-offline/redux-offline updated 3 months ago.

If you want to use this lib, use @redux-offline/redux-offline as this package is updating with the community.

Hovakimyan
  • 510
  • 3
  • 10