site-utils
v0.1.0
Published
A utility package for fetching and manipulating web pages.
Downloads
14
Maintainers
Readme
site-utils
// get the document object for a web page const document = await Site.getDocument("https://example.com")
// get the jQuery object for a web page const $ = await Site.get$("https://example.com")
// use jQuery to manipulate the content of the web page $("h1").text("Hello World!") To use this package in your own project, you can install it from NPM using the following command:npm install site-utils You can then import the Site class into your project and use its methods to manipulate the content of web pages.