Skip to content

Commit

Permalink
Update: Add getting started guides
Browse files Browse the repository at this point in the history
  • Loading branch information
Aahil13 committed Apr 15, 2024
1 parent 6f89d81 commit bdca9aa
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/get-started/installation.md
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:
---
9 changes: 9 additions & 0 deletions src/get-started/quick-start.md
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:
---
15 changes: 15 additions & 0 deletions src/get-started/what-is-nodejs.md
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.

0 comments on commit bdca9aa

Please sign in to comment.