Can I use jQuery with Node.js?

前端 未结 20 1592
清歌不尽
清歌不尽 2020-11-22 05:42

Is it possible to use jQuery selectors/DOM manipulation on the server-side using Node.js?

20条回答
  •  北海茫月
    2020-11-22 06:24

    Yes, jQuery can be used with Node.js.

    Steps to include jQuery in node project:-

    npm i jquery --save Include jquery in codes

    import jQuery from 'jquery';
    
    const $ = jQuery;
    
    

    I do use jquery in node.js projects all the time specifically in the chrome extension's project.

    e.g. https://github.com/fxnoob/gesture-control-chrome-extension/blob/master/src/default_plugins/tab.js

提交回复
热议问题