jay_t55
jay_t55

Reputation: 11652

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?

Upvotes: 4

Views: 350

Answers (1)

TGH
TGH

Reputation: 39248

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.

Upvotes: 7

Related Questions