Skip to content

A web scraping project to watch over stock availability on amazon

Notifications You must be signed in to change notification settings

sancg/notify-amazon-stock

Repository files navigation

Notify Amazon Stock

MIT License

An app that notifies you when a product is available to purchase.

Usage/Examples

At the moment from the items array you past the URL to generate the availability of the Product.

interface Product {
  name?: string;
  url: string;
  hasStock?: boolean;
}
const product: Product[] = [
  {
    name: 'Pyra and Mythra',
    url: 'https://www.amazon.com/dp/B0C2XXMPLY/?coliid=I38OD59C8PRP8C&colid=2RMR8T6DALZ0&psc=0&ref_=list_c_wl_lv_ov_lig_dp_it_im'
  },
  {
    name: 'test',
    url: 'https://www.amazon.com/Geometry-Programmers-Oleksandr-Kaleniuk/dp/1633439607'
  }
];

Documentation

TODO: adding further documentation 🌱

Lessons Learned

How to config a project using

  • Typescript
  • ESlint
  • Prettier
  • Standard-with-typescript

I should write an article about it 💭

About

A web scraping project to watch over stock availability on amazon

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published