-
Notifications
You must be signed in to change notification settings - Fork 101
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
Add node.js support #54
Comments
IMHO we should use always the latest LTS node version. In the latest devonfw distributions we managed to install a portable version of the latest node.js LTS in the software folder. We should do something similar or at least discuss if we can ask the user to install it globally in the system. It will be definitely more natural to any frontend developer. My concern is how to handle everything in the future devonfw dashboard. For the moment we are struggling a lot calling efficiently bash scripts. I can imagine that we will also need to provide some kind of feature selector that will check and install the latest versions of java, node.js, our IDEs, stacks, etc. |
@sjimenez77 thanks for your valuable feedback. I agree that using LTS version of node is great.
Hence, if possible I would still suggest that we do the same for node as we do for all the other tools which is download and "install" them locally within the IDE. |
Implemented with PR #138 and tested on mac OS. |
We already have a
ng
commandlet for angular-cli. However, withoutnode.js
support the user needs to manually installnode.js
into his system/path. This is not consistent with our approach and expected UX ofdevon-ide
.Hence we need to add a
node
commandlet. This whould then be able to download and installnode.js
. We need to check if we want to use node version manager or manage the node version on our own.The text was updated successfully, but these errors were encountered: