I have an HTML string and I need to find all tags in that. Please suggest how to do in node js environment.
Asked
Active
Viewed 402 times
1
-
I need to find img tags in that html string. – Sourabh Apr 24 '17 at 13:09
-
2Try [Cheerio](https://github.com/cheeriojs/cheerio) - it's like jQuery for Node :-) – strah Apr 24 '17 at 13:15
-
You can use the npm modules jsdom and htmlparser to create and parse a DOM in Node.JS http://stackoverflow.com/a/7373003/5528611 – Helen Apr 24 '17 at 13:36