Can I use jQuery with Node.js?

前端 未结 20 1602
清歌不尽
清歌不尽 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:03

    My working code is:

    npm install jquery
    

    and then:

    global.jQuery   = require('jquery');
    global.$        = global.jQuery;
    

    or if the window is present, then:

    typeof window !== "undefined" ? window : this;
    window.jQuery   = require('jquery');
    window.$        = window.jQuery;
    

提交回复
热议问题