Questions tagged [single-page-apps]
The single-page-apps tag has no summary.
28 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
83
views
Singe Page Application for the Web with (dynamic) tabbed interface - is there need for the navigation and url update for ERP application?
I am developing React SPA ERP application (so - no SEO requirement) with dynamic tabbed interface - where each form (e.g. invoice id=1, invoice id=2, invoice new, list of invoices, accounting report) ...
0
votes
1
answer
416
views
Is it a good idea to serve a Single Page Application as a static site?
I've built a small single-page web application in React and seen that it's possible to serve the app as a static site on something like S3.
Previously, I considered using Nginx, but as this is lower ...
1
vote
1
answer
504
views
Is storing access token in private data, refresh token in http-only cookie safe?
Backend: Django / Django Rest Framework, would be hosted at GCP k8s
Frontend: Angular, would be hosted at some CDN e.g Vercel
Authentication: JWT (https://github.com/jazzband/djangorestframework-...
0
votes
1
answer
1k
views
Can I use a session cookie for API authentication?
I want to build a web application with a Single Page Application as the front end and an API as the back end. The front-end SPA will read and write data to the API.
The SPA and the API will be hosted ...
0
votes
1
answer
157
views
Should SPA talk to auth server directly or resource server?
I have an angular based SPA, and backend resource server is written in springboot. I have integrated keycloak to provide OIDC support. Currently the app talks to auth server for login, (supplies ...
1
vote
2
answers
2k
views
Semantic versioning for SPA applications with a RESTful backend
I am building an Angular web application with a RESTful backend. I plan on using semantic versioning to differentiate between different releases. I've already read a bit about how to implement ...
0
votes
1
answer
67
views
For a spa application should request be follow the "single responsiblity" idea or is it better to combine data?
Well in a page in our spa application we need to request some dynamic data from the server. Besides this data for display purposes we also need to request explanations of the columns from the data (...
0
votes
1
answer
824
views
How to set up 2 versions of Single Page Application and serve the right version to users based on the backend setting?
We develop a Single Page Application (SPA) for enterprise clients. When we deploy a new version of our SPA we would like to upgrade a subset of clients whilst leaving the other clients on the more ...
-1
votes
4
answers
1k
views
Do logic on the backend or front end? When handling the results of a "wizard"?
We are creating a SPA, and thus the frontend is more than just a view for backend generated pages.
Now to create an "entry" you normally press create, and then fill in the data for that ...
4
votes
2
answers
386
views
Is there a canonical definition of SPA or is SPA a broadly agreed-on architecture with fuzzy edges? [closed]
Is there a canonical definition of SPA which would exclude the software architecture model described below?
I'm working on an app with a new web-architecture model (new to me, at any rate) which has ...
3
votes
3
answers
5k
views
Solution to notify users Single Page Application (SPA) static resources have updated if users don't refresh their browsers
I need to design a way to notify my user the SPA has updated if they don't refresh their browsers, i.e. if no requests to get index.html is made after the initial load, how do I notify users the ...
0
votes
0
answers
44
views
MVC pitfalls for POSTs when rev proxy down, caching failed POSTs, none user Auth
Intro
My question is I personally spent last 2 years working on a Django project for a factory, it uses the standard MVC pattern. The app uses the factory IP for authentication for terminals in the ...
1
vote
1
answer
549
views
SPA Routing with a RESTful API using HATEOAS
When using routing in a SPA web app (angular, react, etc), the user doesn't have to start at the entry point of the application. They can use a URL in the browser to drill down into any part of the ...
5
votes
1
answer
7k
views
Implementing clean architecture
I just read the book 'clean architecture' by Uncle Bob and really like the approach.
But the big disappointment came when I tried to implement it in C#.
I really hope you can help me with some ...
3
votes
1
answer
2k
views
Many small files vs fewer larger files: impact on bundle size and build time
I've been a relentless proponent of small files. I prefer one function export per file, functions with everything-in-one-view, and breaking up UI components as much as sensible (which is why I love ...