user4661780
user4661780

Reputation:

Get start with RxJs

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

Answers (1)

Gil P
Gil P

Reputation: 11

if you want to use it in browser use browserify

1.install rxjs npm package

npm install rxjs

  1. install browserify

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

Related Questions