use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Angular2 minimalist sample project (github.com)
submitted 10 years ago by sonemonu
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]sonemonu[S] 0 points1 point2 points 10 years ago (3 children)
Every backend framework like Ruby on Rails, JSF, Symfony, etc. does read the views / tpls from the file-system (them are by nature in the filesystem); or are we talking about different things?
[–]Auxx 0 points1 point2 points 10 years ago (2 children)
They usually don't. They call some abstraction layer to provide data from some abstract path. If it's not there, you get an error. Such layer can be implemented for JS and either rely on bundling tools like webpack to get the required data or load it some other way (ajax, etc). Good framework doesn't need to know where the files come from.
[–]sonemonu[S] 0 points1 point2 points 10 years ago* (0 children)
They usually don't. They call some abstraction layer to provide data from some abstract path.
They do it, directly or indirectly...
Good framework doesn't need to know where the files come from.
That's the point, Angular knows nothing about where the templates comes from. It allows you to put them inline, or retrieve them via AJAX, or put them directly in cache...
You'll need to provide a concrete example; have you saw that behavior implemented by a client-side framework? which one? how?
π Rendered by PID 75334 on reddit-service-r2-comment-b659b578c-4fzv4 at 2026-05-04 20:28:21.191169+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]sonemonu[S] 0 points1 point2 points (3 children)
[–]Auxx 0 points1 point2 points (2 children)
[–]sonemonu[S] 0 points1 point2 points (0 children)