Update npm code sample

main
Thomas Orlita 4 years ago committed by GitHub
parent 602e888f43
commit 9952052af7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -64,7 +64,7 @@ const options = {
}; };
;(async function() { ;(async function() {
const wappalyzer = await new Wappalyzer() const wappalyzer = await new Wappalyzer(options)
try { try {
await wappalyzer.init() await wappalyzer.init()
@ -74,7 +74,7 @@ const options = {
// Optionally capture and output errors // Optionally capture and output errors
site.on('error', console.error) site.on('error', console.error)
const results = site.analyze() const results = await site.analyze()
console.log(JSON.stringify(results, null, 2)) console.log(JSON.stringify(results, null, 2))
} catch (error) { } catch (error) {

Loading…
Cancel
Save