robert
robert

Reputation: 857

read or write file to filesystem with angular

I will read/write a file with angular from/to my hdd. I normaly use node module "fs". Whats the best practice to combine this module with angular to use it in node webkit?

Thanks!

Edit: (can't use require in angular to load npm modules. any ideas?)

.service("WindowService", WindowService);

        function WindowService() {
            this.gui = require('nw.gui');
        }

Upvotes: 3

Views: 13647

Answers (3)

Kyle Roux
Kyle Roux

Reputation: 746

i wrote this example, if you had any questions as to how things are working? you may also want to check out this as well, which the former example uses to work outside of the browser.

but since the main question is regarding the error involving the require function, i will elaborate. require is a function implemented by the node runtime, it was added because there was no way initially built into js to import code from fileA to fileB. so when your in the browser you dont need to require anything, just make sure you have the file added to the html ie: <script src="my/file.js"></script>. but if you really want to do require in the browser, just use browserfy.

Upvotes: 2

peterfurax
peterfurax

Reputation: 51

for your project, i will look to socket.io > for broadcast websocket, and update your angular scope... shokidar > better than FS, with less bug than fs

Upvotes: 0

rzelek
rzelek

Reputation: 4013

I have similar experiences to you. I usually wrap modules to services and use it as normal angular service with DI.

This makes code more readable and maintanable. Also, when you want to change node module, you are changing it in one place.

Upvotes: 1

Related Questions