While running this tutorial (on Windows) https://developer.actyx.com/docs/learn-actyx/tutorial I run into the problem that while starting the app crashed.
…index.js: Invalid Version: undefined at new SemVer (C:\Repo\PlayGround\Actyx\chat\node_modules@babel\preset-env\node_modules\semver\semver.js:314:11)
at compare (C:\Repo\PlayGround\Actyx\chat\node_modules@babel\preset-env\node_modules\semver\semver.js:647:10)…
The problem is that while calling npm install some wrong depencedies are collected.
The following workarround fixed the problem:
- change the parcel version in
package.json
from^1.12.4.
to1.12.3
- Delete
package-lock.json
andnode_modules
- Run
npm install
again