Reputation:
I recently begin learning RxJs and now I can work with it in Angular 2+ projects. My question is how can I work with RxJs without Angular, React etc.
I just want to have a pure RxJs project. Which 'npm' package needs to be installed?
Upvotes: 0
Views: 149
Reputation: 11
if you want to use it in browser use browserify
1.install rxjs npm package
npm install rxjs
npm install -g browserify
3.work on your project.js that include rxjs module.
4.then use browserify to convert your project.js to use it in html
$ browserify project.js -o bundle.js
here's good tutorial showing every steps
https://miguelmota.com/blog/getting-started-with-rxjs/
Upvotes: 1