Should I use Angular for a local only NW.js project?

I want to build a medium sized app using NodeJS and NW.js (formerly known as node-webkit). The app will grab some data from the internet, but it won't talk to one dedicated service that is under my control.

Is it good to use AngularJS or Angular's MVC oversized approach if there is no database or web service at the controller level?

I think Angular will be really great for data binding and GUI handling, but I'm not sure if this is the right approach for this type of application.

+3


source to share


1 answer


I see no reason not to use Angular in an nwjs project. I am doing this myself in an application I just finished, built . This is a deck tracking app designed for local users only, never communicating over the internet while working. It only keeps track of the log file that is generated by playing Hearthstone. Since the way information is displayed to the user is still technically a full DOM web page, Angular makes perfect sense since I'm already comfortable using it.



+3


source







All Articles