Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is Angularjs Clientside or Serverside or Both

Tags:

If server side: how can we connect to the database?

I was using it in client side, but can it also be used server side?

If it cannot be used server side should I use php or nodejs (I need to design a website which has a huge data bandwidth)?

like image 845
Eswervarma Avatar asked Mar 10 '14 13:03

Eswervarma


Video Answer


1 Answers

It is purely client side.

If server side how can we connect to databases.

You either use a client side database or you get the data from the server using an appropriate protocol (typically this would be a web service accessed via Ajax).

if not used in server side which one is better php or nodejs..( i need to design a website which uses huge data and bandwidth..)

"Better" without lots of measurable requirements is highly subjective.

like image 78
Quentin Avatar answered Oct 17 '22 23:10

Quentin