JSSoup
JSSoup copied to clipboard
JavaScript + BeautifulSoup = JSSoup
It seems like certain websites or elements don't return anything? This worked: ``` const [isLoading, setLoading] = useState(true); const [data, setData] = useState(""); useEffect(() => { fetch('https://en.wikipedia.org/wiki/Nirvana_(band)') .then(response => response.text())...
Hey! I am trying to use JSSoup in ES6 node.js with modules, but it keeps giving me a JSSoup is not a constructor issue. Any help on this would be...
Would it be possible to support `recursive` argument ? I could simulate it somehow like this at the moment... ~~~ function findAll(element, {'recursive' = false}) { var result = [];...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
When I try running soup.select this error appears. ``` [Unhandled promise rejection: TypeError: doc.select is not a function. (In 'doc.select("#content tbody tr")', 'doc.select' is undefined)] ``` also when I tried...
I added some attirbutes to the html page using jssoup. If i want to convert it back to fs writable object, how should i do it?
# What? - I used JSSoup in this way. ```javascript const data.contentMain = ' blah blah blah> blah blah ..... '; const splitContentMain: string[] = []; const soup = new...
Is there any way to ignore html comments?
Hello, Do we have an equivalent function like beautifulsoup-decompose in JSSoup? https://stackoverflow.com/questions/39885359/beautifulsoup-decompose Regards Jithu
Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...