|
I'm doing this on Mac OS 12.6.7, OpenJDK 19.0.1 at the command line. I followed the instructions up to the "Usage" section. NPM installed using 'brew install npm' I decided to use the "Locally" option. Install went fine. I can see that it created a 'node_modules' folder with stuff in there. Below I can't get GUI to start. No GUI ever comes up but I see the running icon in the toolbar. |
Replies: 1 comment 1 reply
|
You probably don't want to do a local install using If your project didn't already contain a package.json or node_modules, I would revert what was done by deleting package.json, package-lock.json, and node_modules. If you don't want to do a global install, you should be able to just do |
You probably don't want to do a local install using
npm install jdeploybecause that will add jdeploy as a dependency of your project, which will make it larger (it will actually include jdeploy as part of your app bundle, which you probably don't want).If your project didn't already contain a package.json or node_modules, I would revert what was done by deleting package.json, package-lock.json, and node_modules.
If you don't want to do a global install, you should be able to just do