Creating a derbyjs application in windows

probably a stupidd question. I installed node.js on my windows 7 computer and tried to install derbyjs. I ran the command "npm install -g derby" and everything seemed fine.

Now when I try to create a new application through

derby new --coffee testProj01 

he gives me a mistake that the derby is not a recognized team. I tried to launch a new project command from the node_modules / derby / bin directory. it now displays a pop-up window "Select an application to open the selected file."

I think the problem is that there is no exe in the bin folder. Do I have to build a derby before I can work on it? How to do it?

+4
source share
1 answer

Derby and the libraries on which it depends now work again on Windows with version 3.0. Do the node installation and npm upgrade and you should be good.

See https://github.com/codeparty/derby/issues/42 for the background.

+4
source

Source: https://habr.com/ru/post/1411614/


All Articles