Which database to use with AngularJS and JSON

Could not find any resources that investigate this type of problem with Angular, so feel free to link me in the right direction if you know anything.

I am creating an online store for mobile devices (it is only mobile at this stage) with Angular.

The system is based on products (each with a name, designer, description, color, price, category, store location and several others). A.

I currently store all this in JSON files and upload them to Angular, but the more products I add, the more unmanaged it becomes.

What I would like to do :

I need a database to which I can send several requests (for example: "mens, shirt,

The only backend system I've come across is MySQL (and not many). I know enough PHP to get around myself, I would say a beginner-intermediate (I am a third-party developer by profession).

Is this sorting best suited for any particular type of database? And is there any special “good game” that anyone does with AngularJS?

+6
source share
1 answer

Have you watched CouchDB ?

The data stored in CouchDB is initially stored as JSON, so it is well transported to web applications, since you get the opportunity to contact the database as JSON.

CornerCouch is an AngularJS module written specifically for this purpose, although I myself have not played with it.

+3
source

Source: https://habr.com/ru/post/946378/


All Articles