Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is a Server-side Javascript website possible without using client-side Javascript?

Server-Side JavaScript and Node.js. Will a website work if the user has JavaScript disabled or their browser does not support JavaScript?

I understand that it's Server-side JavaScript, but, what I'm asking is; Do I need to use client-side JavaScript if I want a website built with Server-Side JavaScript?

like image 631
jay_t55 Avatar asked Mar 19 '23 00:03

jay_t55


1 Answers

NodeJs will run regardless of browser settings. It runs on the server without any knowledge of the user's settings. You can build a web server in Node and make http requests to it from your browser even if the browser doesn't support javascript.

like image 64
TGH Avatar answered Apr 27 '23 03:04

TGH