-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: Installation guide | ||
index: true | ||
icon: screwdriver-wrench | ||
category: | ||
- Getting started | ||
|
||
footer: | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: Quick start | ||
index: true | ||
icon: code | ||
category: | ||
- Getting started | ||
|
||
footer: | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: What is Node.js? | ||
index: true | ||
icon: book-open | ||
category: | ||
- Getting started | ||
|
||
footer: | ||
--- | ||
|
||
Node.js is a runtime environment that allows you to run JavaScript code outside of a web browser. Instead of running JavaScript on the client-side (in a browser), Node.js enables you to run JavaScript on the server-side. It's commonly used for building web applications, APIs, and server-side scripting. | ||
|
||
Node.js simplifies the process of building scalable network applications. It's built on Chrome's V8 JavaScript engine, which makes it fast and efficient. With Node.js, you can handle thousands of simultaneous connections with ease, making it ideal for real-time applications like chat servers and streaming services. | ||
|
||
Node.js comes with a rich library of modules, making it easy to develop web servers and other network tools. These modules include functionalities for file system I/O, networking (HTTP, TCP, UDP, etc.), and even cryptography. |