ebay-parser

1.0.7 • Public • Published

ebay-parser

This library provides an easy way to parse an ebay HTML page with items.

Quick start

Add it to your project:

npm install --save ebay-parser

Import as a CommonJS module:

const parser = require('ebay-parser')

Use:

const items = parser.parse_items(html); // Array<Item>

Data format:

type Item {
  soldDate: string;
  link: string;
  title: string;
  condition: string;
  price: number;
  shippingPrice: number;
  externalId: string;
}

/ebay-parser/

    Package Sidebar

    Install

    npm i ebay-parser

    Weekly Downloads

    1

    Version

    1.0.7

    License

    ISC

    Unpacked Size

    3.39 MB

    Total Files

    10

    Last publish

    Collaborators

    • maximzhukov_dev