Angular Difference JS to NodeJS [closed]

-1

What is the Difference of Angle JS to NodeJS?

Which is the most used?

Is there a tutorial you recommend to anyone who is starting to teach a CRUD in each of them?

    
asked by anonymous 26.10.2016 / 20:47

1 answer

11
  

Node.js

It is a JavaScript interpreter that works on the server side. Its goal is to help programmers create high-scalability applications (such as a web server) with codes capable of handling tens of thousands of concurrent connections on a single physical machine. Node.js is based on the V8 JavaScript Engine interpreter (open source JavaScript interpreter implemented by Google in C ++ and used by Chrome). It was created by Ryan Dahl in 2009, and its development is maintained by Joyent, where Dahl works.

  

AngularJS

AngularJS is an open-source JavaScript framework that runs on the client side (browser), maintained by Google, which assists in the execution of single-page applications. Its goal is to increase applications that can be accessed by a web browser, built under the model-view-model-view (MVVM) standard, in an effort to facilitate both application development and testing.

The library reads the HTML that contains special tags and then executes the policy in which this tag belongs, and links the presentation to its template, represented by common JavaScript variables. The value of these JavaScript variables can be set manually, or via a static or dynamic JSON resource.

Summarizing AngularJS is a frontend development framework and NodeJS is for backend development, and both use JavaScript as the programming language.

Sources: AngularJS & NodeJS

    
26.10.2016 / 21:20