I want to install a specific version of @babel/core. Can anyone help with the command to achieve it?
Asked
Active
Viewed 3,019 times
0
-
Does this answer your question? [Install specific version of ng cli](https://stackoverflow.com/questions/44759621/install-specific-version-of-ng-cli) – RobC Apr 16 '21 at 08:01
-
To install, let's say version `7.10.0` of `@babel/core`, use the following npm command: `npm install @babel/core@7.10.0`, or via yarn use `yarn add @babel/core@7.10.0`. – RobC Apr 16 '21 at 08:12
-
Does this answer your question? [How to install a previous exact version of a NPM package?](https://stackoverflow.com/questions/15890958/how-to-install-a-previous-exact-version-of-a-npm-package) – rgahan Jul 20 '23 at 19:44