Skip to content

Technology Stack

Detect web technologies behind a site

technologyStack.js
import createClient from 'microlink.io'

const microlink = createClient()

const technologyStack = async (url, opts) => {
  const data = await microlink.metadata(url, {
    meta: false,
    insights: {
      lighthouse: false,
      technologies: true
    },
    ...opts
  })

  return data.insights.technologies
}

const result = await technologyStack('https://example.com')

console.log(result)