Borislav Hadzhiev
Last updated: Mar 17, 2022
Photo from Unsplash
To solve the error "Module not found: Error: Can't resolve 'rxjs'", make sure
to install the rxjs
package by opening your terminal in your project's root
directory and running the command npm install rxjs
and restart your
development server.
Open your terminal in your project's root directory (where your package.json
file is located) and run the following command:
# 👇️ with NPM npm install rxjs # ---------------------------------------------- # 👇️ with YARN yarn add rxjs
The command will add the rxjs package to the dependencies of your project.
npm start
command.You should now be able to import and use the rxjs
package in your application.
import {range, Observable} from 'rxjs'; import {map, filter} from 'rxjs/operators'; range(1, 50) .pipe( filter(x => x % 2 === 1), map(x => x + x), ) .subscribe(x => console.log(x)); const observable = new Observable(subscriber => { subscriber.next(1); subscriber.next(2); subscriber.next(3); setTimeout(() => { subscriber.next(4); subscriber.complete(); }, 1000); });
rxjs
, like with range
in the code snippet above.You can import any operator you need from rxjs/operators
.
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 'rxjs'"
error, open your package.json
file and make sure it contains the rxjs
package in the dependencies
object.
{ // ... rest "dependencies": { "rxjs": "^7.5.5" }, }
The rxjs
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 rxjs@latest