Questions tagged [client-side]

The term "client-side" refers to that portion of a web application which runs in the user's browser. Client-side code is most commonly written in Javascript, HTML and CSS. The counterpart of "client-side" is "server-side", i.e., the part of a web application running at the web server.

There are other many client-side techniques, in addition to used in the user's browser such as:

See also:

2357 questions
0
votes
1 answer

Consequences of Space Complexity in React Apps

I've recently been taking a class on Big O Notation for space and time complexity and I'm trying to apply the concepts to their real world consequences in my day to day job as a React developer. I understand the consequences of time complexity. If a…
Maria
  • 295
  • 2
  • 11
0
votes
1 answer

How to hide XHR Requests in a react single page application?

In react when data is fetched from an endpoint , the endpoint is visible in chrome's devtools under network tab . How can I just hide it ? Does server side rendering solve this issue ?
Mehdi Faraji
  • 2,574
  • 8
  • 28
  • 76
0
votes
0 answers

Client side storage for already fetched json response

I am developing a webpage with shows number of results and has pagination which uses server side pagination with help of pagination tokens. If user clicks on already fetched page then should it make a fetch request? But as per my understanding there…
0
votes
0 answers

Audio stream modulation in a browser

I am trying to create a calling app that uses WebRTC and a feature I want to add is audio obfuscation. I want the ability to change the audio pitch that I am sending either at the source audio or even at the receiving end. I have tried various…
Sanskar Jethi
  • 544
  • 5
  • 17
0
votes
1 answer

store data in browser

I have a scenario for some reason for my current reactJs app, some data need to store on the client-side for 15 minutes. Suppose I have an API 'x'. when a user first time hits this API after login, the response will be stored on the client-side for…
Arafat Ahmed
  • 145
  • 3
  • 10
0
votes
0 answers

React - fetch some data before ssr and fetch some data on client side

I have an app written in reactjs running on firebase which is completely rendered on client side. The problem is Search engines and SEO. App's pages are dynamically rendered based on variables in url path. I am thinking to enable SSR - according to…
Seny
  • 111
  • 1
  • 1
  • 6
0
votes
1 answer

How to apply Bootstrap's "text-center" on MD devices and below , and not on larger devices?

I have a div that I want to apply Bootstrap's text-center class , only on MD devices and below. Any device above MD , I don't want to apply text-center class.

Copyright © Tech…

JAN
  • 21,236
  • 66
  • 181
  • 318
0
votes
2 answers

Is it possible in Jmeter to get overall response time with including rendering of page in browser

I have a requirement from client that The overall response time (end to end time including rendering of page in browser) should be 3 secs for all the requests.Its an API with frontend. As i know jmeter handles server side response time, even if i…
ash
  • 59
  • 1
  • 6
0
votes
1 answer

Filter variable from server on client side

I have a Node Js server that sends a list of laws to the client side throught a variable . How can I filter the variable in the client side (according to a search of the client in an input box)? Thanks in advance
0
votes
1 answer

Reach Router Link in Gatsby flashes page then disappears

I'm using Reach Router in Gatsby to set up client-side routing as below, but when I click the link to my About page, it flashes the content from my About component and then disappears. import React from "react" import { Router, Link } from…
0
votes
1 answer

JMeter - client-side for mobile in Safari

I have Safari browser on Win with installed webdriver on it and following code in JSR223 for Safari: import org.openqa.selenium.safari.SafariOptions; import org.openqa.selenium.safari.SafariDriver; import org.openqa.selenium.WebDriver; import…
0
votes
1 answer

nuxt.js client side get fetch data

I have a nuxt.js application where fetch () hook is used fetch data from API, as below: async fetch() { await this.$store.dispatch('articles/getArticlesDetails', this.$route.params.id) } and I want to use the data returned by API on the…
0
votes
1 answer

iOS/Safari traffic in Jmeter - how to implement with WebDriver for Safari?

How is it possible to implement WebDriver for Safari in Jmeter (client-side)? What workaround should be used instead of set up a path to WebDriver (because there is no safari driver path like for Chrome web driver)? I'm confusing that there are no…
Nadezhda T
  • 262
  • 8
  • 24
0
votes
0 answers

Angular 9. ngx-datatable delay on row expanding

I'm using ngx-datatable client side tree table. When i'm expanding row with lots of children rows i have huge delay between click and moment when all children rendered. Is it possible to avoid this delay? demo
0
votes
1 answer

JMeter - mobile devices requests emulation with JSR223 & groovy - No such property: ExpectedConditions error

I'm trying to emulate https requests from mobile devices for client-side performance testing, using JSR223 + groovy, and the problem is that I couldn't perform in this way click on "Accept All Cookies" span element on page. Response: Response…
Nadezhda T
  • 262
  • 8
  • 24
1 2 3
99
100