Socket
Socket
Sign inDemoInstall

node-html-query

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-html-query

jQuery Node.JS alternative, compatible with TypeScript


Version published
Maintainers
1
Created

Readme

Source

node-html-query

Small, efficient JQuery Node.JS alternative, compatible with TypeScript

What can it do?

Matches HTML elements and modifies DOM much like regular jQuery in browser!


import { Query } from "node-html-query";
const $ = Query(myHtmlFile);

const allDivs = $("div");
const idMatch = allDivs.find("#myId");


import { Query } from "node-html-query";
const $ = Query(myHtmlFile);

$("div").append("<p>I come after a div</p>");
const rawHtml = $("html").print(); // Whole HTML content here!

Who should download this?

Anyone who's looking for preprocessing nodejs package without external dependencies, small and easy to use webscraper, or an easy way to parse HTML content within web workers.

How does it work?

ANTLR-inspired syntax parsers for both DOM and CSS queries combined with custom jQuery method implementation.

What are its benefits?

Environment independence, good bundle size, extensive unit tests, high degree of memory management and pretty good performance.

What are its limitations?

This package is brand new, so even with the extensive unit testing within the DEV package there may be bugs. Also, it cannot process computed properties, nor access standard DOM interface. Furthermore, this package cannot execute or parse JavaScript content within HTML, or CSS styles (it simply sees them as string).

If you encounter any bugs, or have ideas for improvement, do not hesitate to add a task or a pull request.

Keywords

FAQs

Last updated on 03 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc