So I installed Node.js on my Windows machine, opened up command prompt and typed
npm ethercalc
Lots of lines flew by and it seems ethercalc and its dependencies have been downloaded and installed. Now, how do I run ethercalc?
node ethercalc
returns a message saying it can't find file "ethercalc" in the current directory.
Note: I'm completely new to node.js. I was very surprised that the official website does not contain basic "Getting Started" info.
npm install
docs and there's plenty of reading about node in general here.