Tutorial
Basic Concepts

Basic Concepts and Theory of Node js

🎉

Read This on Github

This article is available on Github. You can read it there and contribute to it.
Github Link
Any Issue ?

⭐ What are Client and Server Sides?

Explain

example

Change the image size by using the click-and-scroll function.

Client-side code runs on the user's web browser, while server-side code runs on the web server. For example:

  • Client-side code can use HTML, CSS, and JavaScript to create the web page layout, style, and interactivity. It can also fetch data from the server using AJAX.
  • Server-side code can use Node.js or other languages to handle requests from the client, access the database, and send back data. It can also run business logic and authentication.

A real-world example is Gmail (opens in a new tab). The client-side code loads the web page and sends requests to the server-side code to fetch your emails. The server-side code validates your identity and sends back the data to the client-side code.

⭐ How NodeJs use JavaScript?

Explain

example

Change the image size by using the click-and-scroll function.

Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine, which allows JavaScript to be executed outside of a browser environment.

V8 JavaScript Engine: Node.js uses the V8 engine to compile and execute JavaScript code. This engine was originally developed by Google for their Chrome browser, and it provides high-performance execution of JavaScript code outside of the browser. Ryan Dahl (opens in a new tab) (the creator of Node.js) used the V8 engine to create Node.js. Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine, which allows JavaScript to be executed outside of a browser environment.

Here's an example of how Node.js uses JavaScript:

If you can't understand the code, don't worry. We'll explain it later.

// This is a simple Node.js HTTP server that responds to requests with "Hello, World!"
const http = require('http'); // Import the Node.js HTTP module
 
const server = http.createServer((req, res) => {
  res.writeHead(200, {'Content-Type': 'text/plain'}); // Set the response headers
  res.write('Hello, World!'); // Write the response body
  res.end(); // End the response
});
 
server.listen(3000); // Start the server on port 3000
 

⭐ What developer Make with Node Js?

Explain

example

Change the image size by using the click-and-scroll function.

First request is coming from client like browser, Android, IOS etc then that request is send to server and then server connect to the database and file server and get the data and send it to the client.

  • Developers Make API with Node js

API in simple words is a set of rules that allow two software programs to communicate with each other. When you send a request to a server, the server sends back a response. The request and response are both in the form of an API call. For example, when you search for a product on Amazon, the server sends back a response that contains the product information. This response is an API call.

  • So we can connect Server with Client
  • Node can make API for web, Android and IOS etc.
  • Make can also make website