Skip to content

Commit 5915f8d

Browse files
authored
Update introduction-to-nodejs.md
Revise for clarity. Signed-off-by: E <2061889+toocomputer@users.noreply.github.com>
1 parent 0122397 commit 5915f8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/pages/en/learn/getting-started/introduction-to-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Node.js is an open-source and cross-platform JavaScript runtime environment. It
1010

1111
Node.js runs the V8 JavaScript engine, the core of Google Chrome, outside of the browser. This allows Node.js to be very performant.
1212

13-
A Node.js app runs in a single process, without creating a new thread for every request. Node.js provides a set of asynchronous I/O primitives in its standard library that prevent JavaScript code from blocking and generally, libraries in Node.js are written using non-blocking paradigms, making blocking behavior the exception rather than the norm.
13+
A Node.js app runs in a single process, without creating a new thread for every request. Node.js provides a set of asynchronous I/O primitives in its standard library that prevent JavaScript code from blocking and libraries in Node.js are, generally, written using non-blocking paradigms, making blocking behavior the exception rather than the norm.
1414

1515
When Node.js performs an I/O operation, like reading from the network, accessing a database or the filesystem, instead of blocking the thread and wasting CPU cycles waiting, Node.js will resume the operations when the response comes back.
1616

0 commit comments

Comments
 (0)