Questions tagged [client-side]
The client-side tag has no summary.
82 questions
0 votes
0 answers
156 views
Translation Server-side vs. Client-side when having the same locales files
I'm currently working on a Turborepo project (monorepo architecture) and I have managed t share my locales files to both back-end and front-end parts. This means I share the exact same keys across ...
-2 votes
1 answer
226 views
How do client-side libraries prevent spoofing? [closed]
I'm looking at Segment's documentation right now and they have something called a "write key" that you include in your client-side JavaScript in order to send analytics data to the backend. ...
5 votes
2 answers
491 views
Is there a canonical definition of SPA or is SPA a broadly agreed-on architecture with fuzzy edges?
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 ...
2 votes
1 answer
122 views
Angular Folder directory approach
I know the proper folder structure for an Angular application should be like this: /app /core module /components /services /feature module /components /services ...
1 vote
0 answers
113 views
Appropriate way to organize dependency with external class avoiding high coupling
I was design a server communication module of native application. As starting point for now I have 3 classes: HttpSession — class which contain all necessary data for sending requests. ...
1 vote
3 answers
318 views
Is there a secure way to check previous passwords purely on the client-side?
We have a requirement for a security audit that our password policy must disallow the re-use of a previous password from the last 4 used passwords. We can accomplish this fairly easily by making a ...
0 votes
1 answer
77 views
Why does YouTube save Restricted Content filter locally?
I was scrolling down on my YouTube Homepage and found that beside the filter marked Restricted Content, a point mentioned that the setting of this filter applies to this browser only. Here's the ...
12 votes
3 answers
14k views
How can I prevent a user from editing my code in their browser?
Description I'm designing a Node.JS application (more like a full website). The app will send five JavaScript files and will have <script> tags linking them together. Question How can I prevent ...