jprichardson / node-jsonfile

Easily read/write JSON files.
MIT License
1.2k stars 321 forks source link

Using steps for jsonfile module in Angular 2 #80

Closed daleep-croimedia closed 7 years ago

daleep-croimedia commented 7 years ago

Can anyone tell me how to use jsonfile module, I'm new in Angular 2, I installed jsonfile module but not getting how to use it. Please help me to use it. Thanks

RyanZim commented 7 years ago

@daleep-croimedia jsonfile is intended for use in Node.js. It's simply a convenience wrapper around the Node fs methods and javascript's JSON methods.

I'm not sure what you're trying to do, but you can't use this module in the browser.

daleep-croimedia commented 7 years ago

Yes sir I am using jsonfile in Node.js v7.6.0. But when I am calling readFile() or any other function, getting error " EXCEPTION: Uncaught (in promise): TypeError: Cannot read property 'call' of undefined ";

RyanZim commented 7 years ago

@daleep-croimedia Please post the code snippet that's giving you this error.