Questions tagged [web-architecture]
64 questions
0
votes
1 answer
How can a React parent component with arbitrarily many children update a selected child by its string id without using useRef?
I have a React Hook component named List for example with an arbitrary number of children called Entry (adding or removing is possible). If data for an Entry changes, how can I update it without re-rendering the parent which will re-render all its…

Gia Thuan Lam
- 1
- 1
0
votes
1 answer
Nodejs Database configuration based on accessed domain
I have two domains abc.com and xyz.com pointing to the same NodeJS server. Based on the domain I want to load the configuration that will persist for that domain i.e. for xyz.com I wanna connect to Database1 and for abc.com I wanna connect to…

Vishnudev Krishnadas
- 10,679
- 2
- 23
- 55
0
votes
1 answer
Best way to add a React frontend to a existing Node.js / Express REST API backend
I have an existing backend with a REST API written using node.js/express.
I can call urls e.g. /getallhouses and get the corresponding JSON object.
Using a mobile app, this is rather straightforward as you just call the REST API and process the…

codebird456
- 505
- 8
- 19
0
votes
3 answers
Best practices for a JAMstack blog?
I wanna write a website utilizing the JAMstack architecture and include a blog page (dynamic content that's updated in slow intervals). I'm a bit confused about how I should implement that in a JAMstack-conform way.
I've taken a look into the React…

T0astBread
- 55
- 6
0
votes
2 answers
PWA - Progressive Web Applications Architectures
I been look into things about PWA (link: https://www.youtube.com/watch?v=LaS_5jUeh_0) and it does mention something called "App Shell Architecture",
My Uncertainties:
Can Progressive Web Applications support other Architectures such as MVC? or in…

I am a Student
- 1,570
- 4
- 21
- 36
0
votes
1 answer
Architecture Decison: Replacing Fat Java Client with Web Client
I have a Client Server Application which is Java based with Spring for the server.
Now I have to replace the Java client with a web client.
I have three different achitectur concepts for implementing the webserver and linking it to the appliation…

Jürgen
- 146
- 12
0
votes
1 answer
what parts of django MVC becomes irrelevant when using django + REST framework?
Started learning Django lately.
To make long story short - If I choose to combine:
django framework in my server side
REST as the middleware layer
some of the client side frameworks (such as React, Angular, etc)
which of django's MVC…

GyRo
- 2,586
- 5
- 30
- 38
0
votes
1 answer
Angular 2 Best Practices - Which HTML piece is qualified as component
If I have one service returning multiple data points and these needs to be displayed in multiple html parts (in below case its three). What is the best way to organize & architect this ?
Kindly note that here Sections and Properties always displayed…

Tanmay
- 325
- 1
- 5
- 13
0
votes
1 answer
Is it advisable to make a web program to interface to a database-agnostic layer?
I'm a Winforms programmer before; I always partition programs I write in two parts, the front-end(Winforms) and middle-tier(facilitated by Remoting/WCF)
On that approach, the front-end code cannot access the Linq or System.Data.SqlClient. But that…

Hao
- 8,047
- 18
- 63
- 92
0
votes
1 answer
Load testing ZeroMQ (ZMQ_STREAM) for finding the maximum simultaneous users it can handle
Does anyone have any real-world scenarios that load-tested ZMQ sockets for maximum no. of 'concurrent users' (not throughput) they can handle? Looks like ZeroMQ has some serious problems with FD limits.
The scenario is: there are numerous…

Gopalakrishna Palem
- 1,705
- 1
- 20
- 34
0
votes
1 answer
Removing Master pages to improve website performance
I am thinking of improving the performance/user experience of our Asp.net Web Forms driven application. We have a aspx pages implementing a single master page. The layout of the master page is as follows:
Now the tree control on Area 1 is driving…

fahmi
- 591
- 6
- 27
0
votes
2 answers
What is most important for creating the architecture of a Web Application? Scalability, Maintainability or Perfomance?
I am currently about to redesign a running, special purpose and German language social networking web application. The current version is so messed up that we decided to start from scratch. I don't want to run into all the problems again so I have…

Rene Pickhardt
- 692
- 5
- 17
0
votes
1 answer
Regional parameters for n-tier data retrieval
I am wondering the best place in my web application tiers to user regional settings to format date column output from a database results query.
I can get the regional settings from the HttpContext.Request and pass this as a string to the Business…

matthewbaskey
- 1,027
- 2
- 17
- 40
0
votes
1 answer
Writing modular pages with ASP.NET MVC 4
I'm developing ASP.NET MVC 4 application, that will be used to configure a complex application. I want to have one configuration page, with multiple tabs. Each tab will be used to configure a different part in the system, and when you click on it…

Shahar Gvirtz
- 2,418
- 1
- 14
- 17
0
votes
1 answer
What is the difference between two tier and three architecture?
I'm using JDBC in my application with business logic(client). This JDBC connects to the database which is in another machine(server). In this case, my JDBC directly connects with the database and stores & retrieves data. This is TWO-TIER…

Rajkumar
- 269
- 2
- 6
- 13