
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
html-parse-regex
Advanced tools
Contact me by github:heyderpd. I'll be glad to help you.
Create tree object of html/xml raw file. Each node have:
Now use es2015, don't need first steps! Thanks for: npm~lucasmreis
npm install npm install html-parse-regex
(<Object1>) <div id="A" align="left" style="margin-top:15px;">
(<Object2>) <div id="B" class="yttre">
(<Object3>) <strong>
(<Object4>) ASCII links
</strong>
</div>
</div>
html {
list: [ /* same object's but in list mode */
<Object1>,
<Object2>,
<Object3>,
<Object4>
],
tree: {
root: true,
link: { /* tree view mode */
childs: [ <Object1> ] /* object tag of div#A, base of this example */
}, /* inner this you found link for children tags */
},
shortcut: {
id: { A: <Object1>, B: <Object2> } /* link to tag object find by id */
}
error: {
forcedCloseTag: [ /* if need close any tag open tag will appear in this error object */
{ tag: 'a', start: 5, end: 38 }
]
}
}
/* TAG OBJECT */
<Object1> = {
tag: "div",
attrs: { id: "A", align: "left", style: "margin-top:15px;" },
start: 0,
end: 123,
link: {
father: tree,
childs: [ <Object2> ]
}
}
<Object2> = {
tag: "div",
attrs: { id: "B", class: "yttre" },
start: 0,
end: 123,
link: {
father: <Object1>,
childs: [ <Object3> ]
}
}
/* PURE TEXT OBJECT */
<Object4> = {
text: "ASCII links",
start: 20,
end: 31,
link: {
father: <Object3>
}
}
##To create tree from raw html/xml Example:
import fs from 'fs';
import parse from 'html-parse-regex';
const htmlRaw = fs.readFileSync(`index.html`, 'utf8');
const html = parse(htmlRaw);
FAQs
html parser module
The npm package html-parse-regex receives a total of 191 weekly downloads. As such, html-parse-regex popularity was classified as not popular.
We found that html-parse-regex 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.