1.1.0 • Published 6 years ago
shopping-product-info v1.1.0
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));