Borislav Hadzhiev
Tue Mar 15 2022·2 min read
Photo by Vital Sinkevich
To solve the error "Module not found: Error: Can't resolve 'reactstrap'", make
sure to install the reactstrap
package by opening your terminal in your
project's root directory and running the command
npm install reactstrap bootstrap
and restart your dev server.
Open your terminal in your project's root directory (where your package.json
file is located) and run the following commands:
# 👇️ with NPM npm install reactstrap bootstrap # ---------------------------------------------- # 👇️ with YARN yarn add reactstrap bootstrap
The command will add the reactstrap package to the dependencies of your project.
npm start
command.You should now be able to import and use the reactstrap
package in your
React.js app.
import {Button} from 'reactstrap'; import 'bootstrap/dist/css/bootstrap.min.css'; function App() { return ( <div> <p className="bg-success text-white"> Hello world <Button>Click</Button> </p> </div> ); } export default App;
If the error is not resolved, try to delete your node_modules
and
package-lock.json
(not package.json
) files, re-run npm install
and restart
your IDE.
# 👇️ delete node_modules and package-lock.json rm -rf node_modules rm -f package-lock.json # 👇️ clean npm cache npm cache clean --force npm install
If you're still getting the "Module not found: Error: Can't resolve
'reactstrap'" error, open your package.json
file and make sure it contains the
reactstrap
package in the dependencies
object.
{ // ... rest "dependencies": { "bootstrap": "^5.1.3", "reactstrap": "^9.0.1", } }
The reactstrap
module should NOT be globally installed or be in your project's
devDependencies
, it should be in the dependencies
object in your
package.json
file.
You can try to manually add the lines and re-run npm install
.
npm install
Or install the latest version of the package:
npm install reactstrap@latest bootstrap@latest