
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
For extracting structured information from an HTML document.
Because this utility is was created for extracting highly structured information from online reference docs, and because the way they present that structure is so variable, extraction has two stages:
The extraction functions take selectors to find the relevant parts of the document, and this module has functions for making educated guesses about them.
config must always contain a url, but can optionally also contain an html string or a $ Cheerio object.
This is a shortcut function for running guessBodySelectors, guessTOCSelectors, and guessSectionSelectors. Returns an object in the form { bodySelectors, tocSelectors, sectionSelectors }.
config - as with guess
Looks for potential "main body" elements. Returns an array of likely Cheerio selectors, in order of likelyhood.
Example output:
[ "#maindoc", "#content", ".sidebar" ]
config - as with guess
Looks for potential "index" elements. This is primarily for use when the documentation is spread over several pages. You wouldn't use it for single page reference docs. Returns an array of likely Cheerio selectors, in order of likelyhood.
Example output:
[ "#toc", "#toc ul:nth-of-type(0)" ]
config - as with guess
Looks for potential reference hierarchy elements. Where the other guessing functions returns arrays of single selectors, this function returns arrays of selector arrays, where each element is a different level in the hierarchy.
Example:
[
[ "h1", "h2", "h3" ]
]
config has the following optional values:
guess, and extract will just use the most highly suggested selectorsNOTE: if you pass in sectionSelector, you must also pass in bodySelector.
Example output:
{
body : [cheerio object],
toc : [{
el : [cheerio object],
children : [toc array]
}],
sections : [{
el : [cheerio object],
children : [sections array]
}]
}
You can use extractBody, extractTOC, and extractSections if you only need specific parts.
FAQs
For extracting structured text from an existing document
We found that extractdoc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.