+ 2
What is node. js???
Please help me???
4 Answers
+ 5
Kiwi ,
please do not post duplicated / unnecessary questions.
> node.js is a runtime environment that allows you to run javascript outside of a web browser.
> find more details by using webbrowser and google.
https://en.m.wikipedia.org/wiki/Node.js
https://nodejs.org/en
+ 5
Thanks
+ 2
What is it???
+ 2
Node.js is a platform that allows you to run JavaScript outside a web browser, mainly used for building fast and scalable applications. It works on the V8 engine (the same one used in Google Chrome) and is designed to handle multiple tasks at once without slowing down. Unlike traditional servers, which create a new thread for each request, Node.js uses a single-threaded, event-driven approach, making it great for real-time apps like chats and online gaming. It also has npm (Node Package Manager), which provides thousands of ready-to-use tools. Node.js is widely used for backend development, APIs, and real-time applications.