Home  >  Article  >  Web Front-end  >  What is the difference between nodejs and jquery

What is the difference between nodejs and jquery

青灯夜游
青灯夜游Original
2021-10-29 17:09:493501browse

Difference: jquery is a javascript library running on the client, which mainly provides simplified operations for operating DOM and so on, and handles client affairs; while nodejs is a server program running on the server, which is a server software that can Use js language to operate server-level transactions.

What is the difference between nodejs and jquery

The operating environment of this tutorial: windows7 system, nodejs version 12.19.0&&jquery1.10.0, Dell G3 computer.

The difference between nodejs and jquery

jquery is a javascript library running on the client, which mainly provides simplified operations for operating DOM and so on;

node .js is a server program running on the server side. It runs the JavaScript language. It is a server software that interprets and executes the JS language. You can use js language to operate server-level transactions, such as creating http links and information I/O. These are performed using the same js language as jquery.

That is to say, node.js is a server program that uses js language and can run jquery, but some of the events are not used;

jquery is a js library, mainly for processing Client transactions.

For more programming-related knowledge, please visit: Introduction to Programming! !

The above is the detailed content of What is the difference between nodejs and jquery. 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
Previous article:what is nodejs and npmNext article:what is nodejs and npm