Questions tagged [web-development]
Web development is a broad term for the work involved in developing a web site for the World Wide Web or an intranet.
1,571 questions
1
vote
1
answer
131
views
How Should Services and Presentation Layers Share Data in Web Applications?
Lately, I’ve been studying the fundamentals of Software Architecture for web applications, and I’m a bit unsure about how the data and presentation layers should interact.
From what I understand, the ...
0
votes
1
answer
104
views
Best Practice for Managing Payment Subscription Tier Status
I'm trying to understand the best way to approach how to manage and update a user’s payment subscription status in a web application. Let’s say you have a subscriptions table in a database that is ...
2
votes
3
answers
160
views
Should a web framework / template like Admin-LTE be put in source control alongside our own code?
My team does predominantly back-end work in C#, with a smattering of front-end web development using Angular. We're starting a new website project, based on the Admin LTE framework / template. This is ...
1
vote
1
answer
125
views
Best practice for integrating UI and dynamic user-specific content using a Flask app
I am building a website that uses a recommendation system. Users submit a form which is sent to the backend for the recommendation logic calculation; the recommendation response is sent back to the ...
-1
votes
1
answer
174
views
Designing a third-party web solution [closed]
I'm building a third-party solution for web applications, which consists of:
A client-side library
A web server library
A third-party service
I'm getting blocked on some architecture decisions, ...
-1
votes
2
answers
145
views
Is there a model or some implementation logic for web layouts?
I am making an application in which the user types BDD scenarios of using a webpage. From this retrieve the widgets and their functionalities and make a "webpage prototype" in Figma. I am ...
-3
votes
1
answer
164
views
How are 413 requests handled by servers [closed]
I sent a search string to google that responded back with a 413 error stating that the request content is too large.
Also, I got back:
400. That’s an error.
Your client has issued a malformed or ...
2
votes
3
answers
2k
views
How to Handle Concurrent Refresh Token Requests
I'm developing a web application that uses tokens for authentication. Users often open multiple browser tabs, and each tab has a client-side timer to refresh the authentication tokens before they ...
0
votes
3
answers
583
views
Is it wise for a Production Browser App to Access Localhost Server
I'm looking at doing something like this:
Browser <-> Desktop App <-> SQLite DB
My first thought was, this opens potential access to that SQLite db to every web app that the user interacts ...
0
votes
2
answers
193
views
Are using website builder's, like Squarespace, OK to use when building a web-app that needs unique external components?
I'm a non-technical person starting a web-based project and would like some feedback as to whether or not building a website using a web-builder service like Squarespace will result in re-work once I ...
22
votes
11
answers
9k
views
How is Agile model more flexible than the Waterfall model?
I know one of the differences between Agile and Waterfall is to do with more customer and user feedback, but I'm trying to wrap my head around what makes the Agile/XP model more adaptable to change.
...
0
votes
1
answer
102
views
Resource protection for static webpages
I'm new to web developement so I'm sorry in advance because I assume this is a pretty simple question.
I'm currently hosting a website on hostinger - deployed straight from my github repo.
Currently, ...
0
votes
0
answers
98
views
How to store OAuth2.0 tokens without any authentication logic on the backend
I was looking for some advice as I am tipping my toes into the world of web development, the question might be broader than the title suggests, so any tip that may be in a different direction is also ...
0
votes
1
answer
199
views
Serving part of a web application as a python package for people to install, ok to do?
Background
To preface, I am building a database for the construction of a timing detector. However, I am very new to software engineering and database development. I have been building a website using ...
2
votes
1
answer
294
views
What is an optimal system design for tracking product views per user that is scalable?
I have a web application that contains products and users. There are 10,000+ products and 100,000+ users to give a sense of the scale that's required.
For some application specific reasons, I need to ...