const mql = require('@microlink/mql')
const technologyStack = async (url, opts) => {
const { data } = await mql(url, {
meta: false,
insights: {
lighthouse: false,
technologies: true
},
...opts
})
return data.insights.technologies
}
const result = await technologyStack('https://example.com')
mql.render(result)