New answers tagged node.js
6
votes
Accepted
Is a SPA still a SPA if SSR is used?
The heart and soul of a single page application is just that: a single page; one full page load. It means avoiding that old, clunky GET-POST-Redirect architecture where every user action redraws the ...
2
votes
Is a SPA still a SPA if SSR is used?
Well, sort of.
After all, nothing in the definition of an SPA mandates the client-side rendering. And if it would, it wouldn't make too much sense.
Imagine a simplistic application that displays a ...
1
vote
Should I instantiate controllers in route modules or use static methods?
Neither. Embrace the functional and modular paradigm instead.
All of the Node + Express examples I've seen use the router as a simple series of callbacks, essentially. I haven't seen any object-...
Top 50 recent answers are included
Related Tags
node.js × 511javascript × 143
architecture × 51
mongodb × 36
design-patterns × 26
web-development × 24
design × 23
database × 21
api × 19
websockets × 19
php × 18
angularjs × 18
rest × 17
microservices × 16
java × 15
api-design × 12
web-applications × 12
performance × 12
unit-testing × 11
server × 11
dependencies × 11
testing × 10
authentication × 10
typescript × 10
npm × 10