Update README

main
Elbert Alias 2 years ago
parent 79af19df77
commit 921e725ab9

@ -123,10 +123,13 @@ const wappalyzer = new Wappalyzer()
await wappalyzer.init() await wappalyzer.init()
const results = await Promise.all( const results = await Promise.all(
urls.map(async (url) => ({ urls.map(async (url) => {
url, const site = await wappalyzer.open(url)
results: await wappalyzer.open(url).analyze()
})) const results = await site.analyze()
return { url, results }
})
) )
console.log(JSON.stringify(results, null, 2)) console.log(JSON.stringify(results, null, 2))