4

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?

1 Answer 1

7

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.

Sign up to request clarification or add additional context in comments.

3 Comments

Oh that is awesome news. Thanks tou @TGH
I have been reading about SSJS all night, and I see that there are many frameworks for creating SSJS websites. However I am confused about one thing. Is Node.js a Server-Side JavaScript framework? Can I serve *.ssjs files with Node.js?
Node is a framework for creating web servers. It can essentially serve whatever content you want it to. Node is a bit low level, so you might find it helpful to use another framework called Express on top of Node to get some typical web server features "for free" There are other frameworks to use in combination with Node and Express is one of them

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.