shopping-product-info
v1.1.0
Published
```bash $ npm install shopping-product-info ```
Downloads
4
Readme
shopping-product-info
Supporting Sites
Installing
$ npm install shopping-product-infoUsage
const getProductInfo = require('shopping-product-info');Example
ASYNC/AWAİT
async function ...() {
let product = await getProductInfo(url);
console.log(product);
}OR CHAIN METHOD
getProductInfo(url)
.then(res => console.log(res));