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,572 questions
-4
votes
0
answers
51
views
Roll Based Web App [closed]
I'm gonna implement RBAC (roll-based-access-control) and I'm not sure how to do this.
But I'm sure I don't need to make several pages (namespaces) for each role, such as admin/index.jsx, manager/index....
-1
votes
0
answers
62
views
How to implement SSO between two web applications, one embedded into the other (iframe)? [closed]
I have a web application protected by Keycloak with Resource Owner Password Credentials Grant. Both the frontend and the backend APIs are protected. I need to embed the frontend into a third party ...
1
vote
1
answer
106
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
158
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
134
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
150
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
855
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
376
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
179
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
94
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
93
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
173
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
240
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 ...
2
votes
1
answer
322
views
How do I properly organize JavaScript files for web development?
I am fairly new to web development and have been trying to figure out the best way to organize my JavaScript files for the front-end.
The first approach I started with was "one JavaScript file ...