2

As per NoflowJS is concerned it is a visual programming interface of JavaScript. I got stuck in this syntax :

    $ ./node_modules/.bin/noflo -h

I want the syntax for Windows Operating System. Link to NofloJS: http://noflojs.org/documentation/

Also recommend some best visual programming for JavaScript.

  • 1
    From memory (it's been a while since I've used Windows) you can't run a script directly unless it has an executable file extension. I think you'd need to run something like `node node_modules/.bin/noflo -h`, from your home directory I guess. – Richard Marr Nov 02 '13 at 16:37

1 Answers1

0

It should simply be:

$ node node_modules\.bin\noflo -h

Make sure that you have node.exe available in your Path environment variable. If it isn't, you can of course also just run it with a fully-qualified path.

bergie
  • 930
  • 7
  • 8