@webura/element
TypeScript icon, indicating that this package has built-in type declarations

2.0.3 • Public • Published

Element

An HTML parser for scraping in TypeScript. It uses find and filter that resembles standard Array functions for easier parsing values.

Install

npm install @webura/element

Example

import Element from "@webura/element";
const html = `
  <html>
  <head></head>
  <body>
    <div id='books'>
      <ul>
        <li class='book' data-year='2001'>Book1</li>
        <li class='book' data-year='2002'>Book2</li>
        <li class='book' data-year='2000' style='display:none'>Hidden book</li>
        <li class='book' data-year='2003'>Book3</li>
      </ul>
    </div>
  </body>
  </html>`;
const rootElement = Element.parse(html);
const booksDiv = rootElement.find(el => el.tag == 'div' && el.attr.id == 'books')!;
for (const bookElement of booksDiv.filter(el => el.attr.class == 'book')) {
  if (bookElement.attr.style != 'display:none')
    console.log(bookElement.value + ': ' + bookElement.attr['data-year']);
}
// Book1: 2001
// Book2: 2002
// Book3: 2003

Testing

npm test

Unlicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org/

Readme

Keywords

Package Sidebar

Install

npm i @webura/element

Weekly Downloads

11

Version

2.0.3

License

unlicense

Unpacked Size

24.4 kB

Total Files

10

Last publish

Collaborators

  • webura