Skip to main content

"NodeJS Basics" Theory That You Should Know

To know better about NodeJS, you should know Javascript. So I start with Javascript

  • Javascript is in top 3 language.
  • JavaScript is developed on December 4, 1995. It was a client-side scripting language. So it was used only in browsers.
  • Javascript uses Javascript engine that is used by browsers to convert code into machine code.
  • We have multiple JavaScript engines just like we have different browsers like Firefox, Chrome, internet explorer, edge etc.
  • First JavaScript engine was SpiderMonkey developed by Netscape Communication by the creator of JavaScript Brendan Eich and it was developed in 10 days.
  • Different browsers are using a different type of Javascript Engine:-
    • Internet Explorer is using Chakra
    • Firefox is using Spidermonkey
    • Chrome is using V8
    • Microsoft Edge is rebuild using a chromium-based browser and now it is using V8 engine.
  • Most Famous engine is now V8 Javascript engine because it is faster and can be used for mobile development, desktop app development and now server-side development.
  • For server-side development, V8 engine is used to build a Runtime Environment which will work on the machine and it is named as NodeJS.
NodeJS is not a programming language and not a framework. It is a basically a Runtime Environment where you can run JavaScript.
  • Using NodeJS, you can run javascript code on a standalone physical machine.
  • You can build a standalone application using NodeJS.
  • NodeJS is not a framework so we need some framework to work with NodeJS, So we got ExpressJS.
  •  NodeJS has NPM (Node Package Manager) that has a huge database of modules that you can use them or you can publish your own module in NPM.

In simple words, NodeJS is the Javascript runtime environment which uses Javascript V8 engine.

What is NodeJS?
  • NodeJS uses a single thread to handle the request/response from clients.
  • Suppose, you have 100 clients and server takes 3 seconds to complete the one client's request then 100th client needs to wait for 3000 sec to get served by the NodeJS application.
  • So, resolve the above issue single thread don’t wait for the response from the server and then the single thread will not be blocked for a single client.
  • But how it will work? NodeJS uses two concepts:-
    •     Asynchronous
    •     Non-blocking I/O
  • Non-blocking I/O means whenever you get the request from the client then the single thread will send the request to someone else, So current thread will not be busy working with that request.

  • In the above image, Single thread will send the request to the worker and will take another request from the client. If a single thread gets another request from the client then again single thread assign the task to another worker and that worker will process the task and then the single thread will come back to accept the response. This is done by Asynchronous function using callback from the individual workers.
  • So we have one question, If NodeJS does not support the multiple threads then how we are able to create these workers?
  • To answer the above question, NodeJS uses the concept of “libuv”. libuv is the special library built for NodeJS but we can use other applications as well.
  • Libuv provides the concept of non-blocking I/O. It is built in C language which uses the system kernel and kernel has multiple threads. So, In NodeJS, you are not using multiple threads. behind the scene, your kernel is implementing the multiple threads. So above these workers are threads that make NodeJS fast and flexible.


What is NPM?
  • NPM stands for Node Package Manager.
  • NPM provides various types of already built modules like api for connecting the application with database
  • Modules can be built by anyone and distribute to the NPM for sharing with others.
  • Modules can be anything like a simple calculation program, array handling etc.
  • NodeJS has lots of inbuilt modules like http, fs(file system) to access system files for read/write operations, cryptography for security. 

Comments

Popular posts from this blog

How to kill a process running on particular port in Linux

  If port 8080 needs to be kill use below single command: kill -9 $(lsof -t -i:8080) Note: remove -9 from the command, if you don't want to kill the process violently. To list any process listening to the port 8080: lsof -i:8080 Use any port number that you want to kill.

How to Setup Virtual Environment in Python with venv

A virtual environment is the most used tool by the developers to isolate the dependencies for different projects. Suppose you have two projects say porj1 and proj2 . proj1 needs the Django dependency with version 3.2 but your proj2 needs the Django dependency with version 2.2. In this situation you need a virtual environment to keep the both version on your system separately.  How to create virtual environment in python:  Decide a directory where you want to create the virtual environment. You can use your project directory or any other directory as per your wish.  Run the below command. Here` awesome_proj_env ` is the folder where virtual environment will be created. if the folder does not exists then it will be created automatically. python3 -m venv awesome_proj_env    Activate the virtual environment: On Linux/Mac OSX: source awesome_proj_env/bin/activate  On Windows: awesome_proj_env \Scripts\activate.bat Deactivate the virtual environment in Pyth...

[Resolved] MySQL error code: 1175 during UPDATE in MySQL Workbench

 If WHERE clause does not have primary key in UPDATE query then this error comes. If you want to run the update query without having primary key in WHERE clause of UPDATE query then below command needs to be run to disable the safe mode. SET SQL_SAFE_UPDATES = 0; It is good to run  SET SQL_SAFE_UPDATES = 1;   after running your UPDATE query and again enable the safe mode. Example: SET SQL_SAFE_UPDATES=0; UPDATE table_name SET col_name=1; SET SQL_SAFE_UPDATES=1;