jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
Installation
npm install jquery
Usage
Import jQuery library and use $ function.
import $ from "jquery";
$(function () {
console.log("jQuery is ready!");
$("body").addClass("jquery-active");
});