Stack Exchange network consists of 183 Q&A communities includingStack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
I'm building a web app using Spring Boot (backend) and React (frontend).My authentication is based on JWT, with both access token and refresh token.The refresh token is stored in an HTTP-only ...
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) ...
I am developing a mobile application, and one of the features is a "story" that is essentially a series of screens. The screens can be of three main templates:A "video" template ...
I have a React frontend and a Nodejs backend that uses authentication via an OIDC service provider. After a user goes through the SSO authentication flow I store the token (containing a refresh token ...
Should we use utility functions in react or should everything be components and hooks?I had this scenario:Utility function for formatting money.const formatMoney = (value) => value == null ? '' :...
Before I begin, I want to say I am very new to this and I am a junior but also solo developer with no seniors to ask for guidance. Please feel free to explain to me that I am not approaching it ...
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 ...
In my current monorepo structure for frontend, this is how it looks:apps\jira\confljuence\packagesuiutils\src (contains common utils like useDebounce.ts, isEmptyObject.ts, etc.)From what i ...
For the following component, how would I extract the unit logic to allow for composition? In my actual app I am trying to reduce the amount of logic encoded in the component and I have decided that ...
In my company, all of the projects use at least some kind of global state library like Redux and MobX.However, the actual usage is limited to storing fetched data, and it lacks any caching logic or ...
I work with Computer Vision applications, mainly in Python and C++. Recently, I get involved with a customer that wants to create a UI based on React JS to visualize the results of our software in ...
I'm just starting to build a web app using React.js, Next.js, Prisma, & PostgreSQL. In this web app, users can create "projects", which are represented by 10-15 rows in the database. ...
I am trying to build ERP application using React frontend and I have not found decisive answer whether to use object graphs in React state?E.g. I would like to build Invoice view and I have the ...
An issue I find myself having with code layout in my React components is that I end up having to define too many handlers.I generally write only functional components with hooks, but within the body ...