Hello,
still a great product. I am using a recent version of CodeMix (apparently 3.6.0?-something) with Eclipse 2020-09. It works most of the time as it should.
However: when I first create an Angular project (using the GUI), it is supposed to do the following:
npm install --save-dev angular-ide
It apparently does that, because I am able to start the server as expected.
Now.. when I close Eclipse and re-open it, it seems to have “forgotten” that command and the start up seems to not result in a new Terminal+ shell with the output. To fix this, I had to open such a shell for this Angular project by hand and write the following command:
npm install --save-dev --global angular-ide
I am not sure whether --global
has any effect, especially since I do not have any NPM or NodeJS installed outside of what CodeMix does (i.e. none of them available outside, globally). But after writing that command and restarting Eclipse, the server starts up properly again.
Do you have an idea why this happens?
Since I fixed it, it’s not a problem to me anymore, but I’d consider this to be a bug.