I use the browser using brfs (as described here: integrating knockouts with the browser ) and I check the build controller that does not work Node is installed and it is also not installed on npm. My solution is to register node.exe, and then follow these steps to use the browser:
.\node.exe .\browserify\bin\cmd.js index.js -o app.js
It works great. However, I want to use brfs, and browsers expect this to be a conversion, for example.
browserify -t brfs main.js > bundle.js
Now I cannot understand this because "brfs" will not be an alias, and I cannot understand how to use my node.exe trick again. I think I want this, which obviously does not work, because the brackets do not work like in cmd:
.\node.exe .\browserify\bin\cmd.js -t (.\node.exe .\brfs\bin\args.js) index.js -o app.js
How can i do this?
source share