Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mikronode needs rxjs 5.3.0 #85

Open
leo-combes opened this issue Apr 11, 2019 · 3 comments
Open

mikronode needs rxjs 5.3.0 #85

leo-combes opened this issue Apr 11, 2019 · 3 comments

Comments

@leo-combes
Copy link

Would be need to add an advertising that install can fail because the last version of rxjs (6.4.0) not work with mikronode.
If install rxjs by default, it is installed the last version, and when mikronode attemp to connect with routerOS, throws this error:

Unhandled rejection:  {}
Rejected {
context: { parent: { parent: undefined } },
id: 1,
value:
TypeError: _sentence$.get(...).do is not a function

Seems as rxjs it is not installed, but is no the case:

npm list mikronode
├── [email protected] 
└── UNMET PEER DEPENDENCY [email protected]

rxjs is installed, but claim for unmet dependency. If I try to install:

npm install rxjs
npm WARN [email protected] requires a peer of rxjs@^5.3.0 but none is installed. You must install peer dependencies yourself.

The solution is install rxjs 5.3.0 manually:

npm install rxjs@^5.3.0

Seems to be a silly problem, but it took me too long to realize it. Perhaps someone else finds the warning useful.

@devstudios
Copy link

works fine for me after npm install rxjs@^5.3.0

@adams-family
Copy link

Confirmed the same here, rxjs is missing. However, after adding rxjs I'm still facing this issue:
#93

@adams-family
Copy link

Sorry for the confusion, installing 5.3.0 solved the problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants
@leo-combes @adams-family @devstudios and others