OPERATING SYSTEMSOS Linux

install node js version 14 LTS for Linux

node js version 14.15-4 LTS (Long Team Support) + package npm (node package manager) version 6.14.10
website official https://nodejs.org/en/

command
sudo apt update
sudo apt install curl
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash –
sudo apt -y install nodejs

wikipedia https://en.wikipedia.org/wiki/Node.js
Node.js is an open-source, cross-platform, back-end JavaScript runtime environment that runs on chrome v8 engine and executes JavaScript code outside a web browser. Node.js lets developers use JavaScript to write command line tools and for server-side scripting—running scripts server-side to produce dynamic web page content before the page is sent to the user’s web browser. Consequently, Node.js represents a “JavaScript everywhere” paradigm, unifying web-application development around a single programming language, rather than different languages for server-side and client-side scripts.

Though .js is the standard filename extension for JavaScript code, the name “Node.js” doesn’t refer to a particular file in this context and is merely the name of the product. Node.js has an event-driven architecture capable of asynchronous I/O. These design choices aim to optimize throughput and scalability in web applications with many input/output operations, as well as for real-time Web applications (e.g., real-time communication programs and browser games).

The Node.js distributed development project was previously governed by the Node.js Foundation, and has now merged with the JS Foundation to form the OpenJS Foundation, which is facilitated by the Linux Foundation’s Collaborative Projects program.

Corporate users of Node.js software include GoDaddy, Groupon, IBM, LinkedIn, Microsoft, Netflix, PayPal, Rakuten, SAP, Voxer, Walmart, Yahoo!, and Amazon Web Services.

source by ngedok game

linux foundation

Leave a Reply

Your email address will not be published. Required fields are marked *