Skip to content

FSou1/ebay-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published