AngularJS is NOT depending on Node modules. But AngularIO is. If you install AngularIO framework today, it'll come with a "node_modules" library that contains many dependencies like NodeJS does. However, AngularIO framework itself doesn't call library like "const test = require (test)" like the NodeJS server does. AngularIO is using "import xxx from '@angular/core'" statement to bring in dependencies for your AngularIO project. AngularJS can be used for embedding on any html file but AngularIO can't. It has its own environment and router and behaves like a standalone app on its own server. Hope that helps.
On Sat, Jan 26, 2019 at 4:56 PM Ronald Rex <[email protected]> wrote: > Hello Friends, I was wondering how does Angular use Node? I am new to > Angular and I notice that > many of the article that I read refer to Node.js, but I dont have enough > information or background knowledge > to understand how Angular uses Node. Thanks !!!! > > -- > You received this message because you are subscribed to the Google Groups > "Angular and AngularJS discussion" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/angular. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
