Reputation: 11652
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
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