Node.js — About Node.js® (2024)

As an asynchronous event-driven JavaScript runtime, Node.js is designed to buildscalable network applications. In the following "hello world" example, manyconnections can be handled concurrently. Upon each connection, the callback isfired, but if there is no work to be done, Node.js will sleep.

const { createServer } = require('node:http');const hostname = '127.0.0.1';const port = 3000;const server = createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World');});server.listen(port, hostname, () => { console.log(`Server running at http://${hostname}:${port}/`);});

This is in contrast to today's more common concurrency model, in which OS threadsare employed. Thread-based networking is relatively inefficient and verydifficult to use. Furthermore, users of Node.js are free from worries ofdead-locking the process, since there are no locks. Almost no function inNode.js directly performs I/O, so the process never blocks except when the I/O is performed usingsynchronous methods of Node.js standard library. Because nothing blocks, scalable systems are veryreasonable to develop in Node.js.

If some of this language is unfamiliar, there is a full article onBlocking vs. Non-Blocking.

Node.js is similar in design to, and influenced by, systems like Ruby'sEvent Machine and Python's Twisted. Node.js takes the event model a bitfurther. It presents an event loop as a runtime construct instead of as a library. In other systems,there is always a blocking call to start the event-loop.Typically, behavior is defined through callbacks at the beginning of a script, andat the end a server is started through a blocking call like EventMachine::run().In Node.js, there is no such start-the-event-loop call. Node.js simply enters the event loop after executing the input script. Node.jsexits the event loop when there are no more callbacks to perform. This behavioris like browser JavaScript — the event loop is hidden from the user.

HTTP is a first-class citizen in Node.js, designed with streaming and lowlatency in mind. This makes Node.js well suited for the foundation of a weblibrary or framework.

Node.js being designed without threads doesn't mean you can't takeadvantage of multiple cores in your environment. Child processes can be spawnedby using our child_process.fork() API, and are designed to be easy tocommunicate with. Built upon that same interface is the cluster module,which allows you to share sockets between processes to enable load balancingover your cores.

Reading Time
3 min read
Contribute
Edit this page
Node.js — About Node.js® (2024)
Top Articles
Dragon price today, DRAGON to USD live price, marketcap and chart | CoinMarketCap
Como proteger meu patrimônio de uma recessão global? | InvestNews
Fiskars X27 Kloofbijl - 92 cm | bol
Express Pay Cspire
Craigslist Monterrey Ca
Spn 1816 Fmi 9
What Happened To Dr Ray On Dr Pol
Klustron 9
Optum Medicare Support
Mikayla Campinos Videos: A Deep Dive Into The Rising Star
Dityship
Jet Ski Rental Conneaut Lake Pa
Cincinnati Bearcats roll to 66-13 win over Eastern Kentucky in season-opener
Bernie Platt, former Cherry Hill mayor and funeral home magnate, has died at 90
Craigslist Apartments In Philly
Parentvue Clarkston
Shopmonsterus Reviews
Lakers Game Summary
Wisconsin Volleyball Team Boobs Uncensored
Stihl Dealer Albuquerque
Celina Powell Lil Meech Video: A Controversial Encounter Shakes Social Media - Video Reddit Trend
Mineral Wells Skyward
Spiritual Meaning Of Snake Tattoo: Healing And Rebirth!
Helpers Needed At Once Bug Fables
Claio Rotisserie Menu
130Nm In Ft Lbs
The Procurement Acronyms And Abbreviations That You Need To Know Short Forms Used In Procurement
Pay Stub Portal
What does wym mean?
Khatrimmaza
Mobile Maher Terminal
Hotel Denizen Mckinney
Rvtrader Com Florida
Sedano's Supermarkets Expands to Orlando - Sedano's Supermarkets
Ark Unlock All Skins Command
Tyler Sis 360 Boonville Mo
Zero Sievert Coop
Craigs List Palm Springs
Lovein Funeral Obits
Bartow Qpublic
062203010
Mudfin Village Wow
Citymd West 146Th Urgent Care - Nyc Photos
Brown launches digital hub to expand community, career exploration for students, alumni
Spurs Basketball Reference
Port Huron Newspaper
Barber Gym Quantico Hours
Great Clips Virginia Center Commons
Assignation en paiement ou injonction de payer ?
2121 Gateway Point
Zalog Forum
One Facing Life Maybe Crossword
Latest Posts
Article information

Author: Melvina Ondricka

Last Updated:

Views: 5793

Rating: 4.8 / 5 (48 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Melvina Ondricka

Birthday: 2000-12-23

Address: Suite 382 139 Shaniqua Locks, Paulaborough, UT 90498

Phone: +636383657021

Job: Dynamic Government Specialist

Hobby: Kite flying, Watching movies, Knitting, Model building, Reading, Wood carving, Paintball

Introduction: My name is Melvina Ondricka, I am a helpful, fancy, friendly, innocent, outstanding, courageous, thoughtful person who loves writing and wants to share my knowledge and understanding with you.