Is there a recommended way to integrate the node module "fs" with Angular in order to read and write files from/to the hard drive using Node Webkit?
Thank you for any guidance!
Edit: (Does anyone have suggestions on how to load npm modules in Angular without using require?)
.service("WindowService", WindowService);
function WindowService() {
this.gui = require('nw.gui');
}