About 26,400,000 results
Open links in new tab
  1. What is client side javascript and what is server side javascript?

    Sep 10, 2009 · Client-side javascript allows you to make possible some user interactions, by for instance changing the DOM, adding events to html elements, etc.. On the other hand, server …

  2. javascript - What is the difference between client-side and server …

    Client-side scripting generally refers to the class of computer programs on the web that are executed client-side, by the user's web browser, instead of server-side. JavaScript is visible to …

  3. How to render component only client side with Remix?

    I have a three.js component that should only be rendered client side, how do I do this with Remix? Does Remix expose any utilities to help determine if we're in a server or client context? Could …

  4. reactjs - Next.js Application error: a client-side exception has ...

    Jun 13, 2022 · Next.js Application error: a client-side exception has occurred (see the browser console for more information) [closed] Asked 3 years, 6 months ago Modified 10 months ago …

  5. ReactJS server-side rendering vs client-side rendering

    Mar 26, 2016 · You can also check whether the code being executed is on the server-side or client-side using typeof window == "undefined" and then fetch your data accordingly.

  6. Nextjs Error: Application error: a client-side exception has occurred ...

    Nov 29, 2023 · Then I started the app in development mode by running the command; npm run dev. And when I visited the URL localhost:3000, I saw the following error: Application error: a …

  7. What is client-side routing and how is it used? - Stack Overflow

    Jul 3, 2016 · Client side routing is the same as server side routing, but it's ran in the browser. In a typical web application you have several pages which map into different URLs, and each of …

  8. Client-side logic OR Server-side logic? - Stack Overflow

    A simple example: To render a dynamic html page, I can format the page in server-side code (PHP, python) and use Ajax to fetch the formatted page and render it directly (more logic on …

  9. Is it worth hashing passwords on the client side - Stack Overflow

    Jul 31, 2016 · 161 Basically, your friend is right. But simply hashing the password on the client side is only just better than submitting it as plain text to the server. Someone, who can listen …

  10. Accessing Cookie client-side with Next JS - Stack Overflow

    Jan 24, 2023 · Using the cookies-next package, according to their docs, accessing cookies client side is as simple as getCookie('key'); - client side I have a simple function in my Next JS app, …