1.0.7 • Published 2 years ago

ebay-parser v1.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

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;
}
1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago