search
HomeWeb Front-endJS TutorialWhat is node.js suitable for? What are the benefits of using node.js?

This article mainly talks about the suitable direction of node.js. What is node.js suitable for? What are the benefits of node.js? Please see the article for specific details.

1. Let’s first talk about what node.js is suitable for:

First of all, nodeJs is the cornerstone of the front-end full stack, and its application scenarios have evolved from the front-end The scaffolding and auxiliary tools of tools have developed into the API middle layer, agent layer, and professional back-end development.

The most valuable of these is the api middle layer. The big trend now is that more and more business is being pushed to the front end, and the back end is focused on only providing services. A very typical and common work scenario is that when the front-end and back-end collaborate, sometimes the front-end needs to wait for the back-end interface due to different progress.

At this time, the middle layer application of nodeJs can solve this problem very well. Through nodeJs, the front end can agree on the format of the data, customize its own interface according to the needs of the front end, encapsulate CRUD operations on the database, create its own proxy and gateway servers, etc. In the past, you could only wait for the backend to do these things, but now you can do it yourself through the nodeJs frontend, which makes the work process more controllable.

Of course, this also puts forward higher requirements for front-end developers. At least the shortcomings in database, architectural design, system structure, and network applications need to be slowly filled.

It is said that I am not sure. NodeJs was originally developed for the back-end, but the Java language was chosen for simplicity, asynchronousness, and large concurrency. By mistake, it was discovered by the front-end and carried forward.

So doing nodeJs on the front end will inevitably erode the back end, and the development structure and technology stack of the back end are already very complete, so the back end is generally unwilling to change, so many times the resistance to nodeJs actually comes from the back end. Extremely conservative. Of course, this makes sense, because the backend is mainly services, data, and underlying applications. These things require stability and security, and there are some historical issues, so they don't like new things.

So at this stage, many nodeJs applications are bridges between the front-end and the back-end. Generally speaking, new companies, startups, and incubation projects without any historical baggage are more willing to use nodeJs because it is fast and efficient.

Nowadays, basically all front-end applications have the shadow of nodeJs, such as React, vue, angular, etc. Its application scenarios and job market are also very large, so learning nodeJs is not about what you can do. But it gives you one more space to display. (If you want to know more about node.js, come to the node.js video tutorial column on the PHP Chinese website)

2. Now let’s talk about using node.js Benefits:

As you saw earlier, Node is ideal for situations where you anticipate potentially high traffic before responding to the client, but the required server-side logic and processing is not There must be a lot. We have summarized three benefits of Node, which can also be said to be typical examples of outstanding performance:

1.RESTful API

The Web service that provides RESTful API receives several parameters, parses them, assembles a response, and returns a response (usually less text) to the user. This is an ideal situation for Node because you can build it to handle tens of thousands of connections. It still doesn't require a lot of logic; it essentially just looks up some values ​​from some database and composes them into a response. Since responses are small amounts of text and inbound requests are small amounts of text, the traffic is not high and a single machine can handle the API needs of even the busiest companies.

2.Twitter Queue

Imagine a company like Twitter that has to receive tweets and write them to a database. In reality, with almost thousands of tweets arriving per second, it is impossible for the database to handle the number of writes required during peak hours in a timely manner. Node becomes an important part of the solution to this problem. As you can see, Node can handle tens of thousands of inbound tweets. It quickly and easily writes them to an in-memory queuing mechanism (such as memcached), from where a separate process can write them to the database. Node's role here is to quickly collect tweets and pass this information to another process responsible for writing. Imagine an alternative design (where a regular PHP server would try to handle writes to the database itself): each tweet would cause a short delay in being written to the database because the database call is blocking the channel. A machine designed this way might only be able to handle 2000 inbound tweets per second due to database latency. Processing 1 million tweets per second would require 500 servers. Instead, Node handles each connection without blocking the channel, allowing it to capture as many tweets as possible. A Node machine that can handle 50,000 tweets requires only 20 servers.

3.Video Game Statistics

If you've played the game Call of Duty online, you'll immediately realize something when you look at the game's statistics: To generate that level of statistics, a huge amount of information must be tracked. In this way, if there are millions of players playing online at the same time, and they are in different positions in the game, a huge amount of information can be generated very quickly. Node is a great solution for this scenario because it ingests the data generated by the game, performs minimal merging of the data, and then queues the data so that it can be written to the database. Using an entire server to track how many bullets a player fires in a game seems silly, and if you use a server like Apache, there may be some useful limitations; but instead, if you use a dedicated server to track all statistics for a game Data, as you would do with a server running Node, that seems like a smart move.

The above is an introduction to the use of node.js and the benefits of node.js (if you want to see more content, go to the node.js Chinese Reference Manual column on the PHP Chinese website), there are If you have any questions, you can ask below

[Editor’s recommendation]

How to use node.js? Let’s talk about the application process of node.js in a simple way:

What does node.js do? Introduction to 10 application scenarios of node.js

The above is the detailed content of What is node.js suitable for? What are the benefits of using node.js?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vercel是什么?怎么部署Node服务?Vercel是什么?怎么部署Node服务?May 07, 2022 pm 09:34 PM

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

node.js gm是什么node.js gm是什么Jul 12, 2022 pm 06:28 PM

gm是基于node.js的图片处理插件,它封装了图片处理工具GraphicsMagick(GM)和ImageMagick(IM),可使用spawn的方式调用。gm插件不是node默认安装的,需执行“npm install gm -S”进行安装才可使用。

怎么使用pkg将Node.js项目打包为可执行文件?怎么使用pkg将Node.js项目打包为可执行文件?Jul 26, 2022 pm 07:33 PM

如何用pkg打包nodejs可执行文件?下面本篇文章给大家介绍一下使用pkg将Node.js项目打包为可执行文件的方法,希望对大家有所帮助!

一文解析package.json和package-lock.json一文解析package.json和package-lock.jsonSep 01, 2022 pm 08:02 PM

本篇文章带大家详解package.json和package-lock.json文件,希望对大家有所帮助!

分享一个Nodejs web框架:Fastify分享一个Nodejs web框架:FastifyAug 04, 2022 pm 09:23 PM

本篇文章给大家分享一个Nodejs web框架:Fastify,简单介绍一下Fastify支持的特性、Fastify支持的插件以及Fastify的使用方法,希望对大家有所帮助!

node爬取数据实例:聊聊怎么抓取小说章节node爬取数据实例:聊聊怎么抓取小说章节May 02, 2022 am 10:00 AM

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!

手把手带你使用Node.js和adb开发一个手机备份小工具手把手带你使用Node.js和adb开发一个手机备份小工具Apr 14, 2022 pm 09:06 PM

本篇文章给大家分享一个Node实战,介绍一下使用Node.js和adb怎么开发一个手机备份小工具,希望对大家有所帮助!

图文详解node.js如何构建web服务器图文详解node.js如何构建web服务器Aug 08, 2022 am 10:27 AM

先介绍node.js的安装,再介绍使用node.js构建一个简单的web服务器,最后通过一个简单的示例,演示网页与服务器之间的数据交互的实现。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)