{"id":29878618,"url":"https://github.com/hom3chuk/tektek","last_synced_at":"2025-07-31T07:33:37.550Z","repository":{"id":303129770,"uuid":"938719637","full_name":"hom3chuk/tektek","owner":"hom3chuk","description":"A library for detecting technologies used within HTTP Archive (HAR)","archived":false,"fork":false,"pushed_at":"2025-07-05T21:57:29.000Z","size":766,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-05T22:17:53.977Z","etag":null,"topics":["fingerprinting","har","http-archive-format"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hom3chuk.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-25T11:53:08.000Z","updated_at":"2025-07-05T21:57:32.000Z","dependencies_parsed_at":"2025-07-05T22:17:56.013Z","dependency_job_id":"4ea72d92-1a1d-4e37-8fde-0a96f5860aab","html_url":"https://github.com/hom3chuk/tektek","commit_stats":null,"previous_names":["hom3chuk/tektek"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hom3chuk/tektek","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hom3chuk%2Ftektek","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hom3chuk%2Ftektek/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hom3chuk%2Ftektek/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hom3chuk%2Ftektek/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hom3chuk","download_url":"https://codeload.github.com/hom3chuk/tektek/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hom3chuk%2Ftektek/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268004324,"owners_count":24179399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-31T02:00:08.723Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fingerprinting","har","http-archive-format"],"created_at":"2025-07-31T07:33:36.380Z","updated_at":"2025-07-31T07:33:37.526Z","avatar_url":"https://github.com/hom3chuk.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tektek\r\nA library for detecting technologies used within HTTP Archive (HAR)\r\n\r\n## List of tracked technologies\r\n\r\nAbyss, Adobe Fonts, Aimtell, Apache Web Server, APISIX, AWS CloudFront, AWS ELB, AWS Lambda, AWS S3 Server, Axeptio, Azure, Baidu WAF, BaseHTTP, Bitrix, Bunny CDN, Caddy, Canny, CherryPy, Cloudflare, Cloudflare Server, Cloudinary, Constant Contact, Datadog, Digitalproserver, Drupal, Engintron, Facebook SDK, Fastly, Font Awesome, FoxyCart, Google Ads, Google Analytics, Google Compute Engine, Google Fonts, Google ReCAPTCHA, Google Tag Manager, gunicorn, H2O, HAProxy, Haravan, Heroku, Hostinger, Hostinger hPanel, Hotjar, Iterable, Jetty, Joomla!, jQuery, Klaviyo, Lightbox JS, lighttpd, LiteSpeed, Matomo, Merlin CDN, Microsoft IIS, Namecheap nginx, NaviServer, Next.js, Nginx, Northbeam, OpenCMS, OpenResty, Pagely, Parsely, Parsely WP plugin, PHP, Plesk, Podscribe, Prismic, Protecht, React, Refersion, Resin, Ruby, Sentry.io, ServiceNow ADC, Shopify, Spektrix, Splunk, Stripe, Swiftype, Swiper JS, Taboola, Tailwind CSS, Tornado, Trustpilot, Twisted Web, Vercel, Virtuoso Universal Server, unpkg, Usercentrics Cookiebot, Webflow, Webpack, WEBrick, Wisernotify, Wistia, WordPress, WP Engine, Zope\r\n\r\n## Installation\r\n\r\n### npm\r\n\r\n```\r\nnpm i @hom3chuk/tektek\r\n```\r\n\r\n### yarn\r\n\r\n```\r\nyarn add @hom3chuk/tektek\r\n```\r\n\r\n## Usage\r\n\r\n### Import\r\n\r\n#### commonjs\r\n\r\n```\r\nconst tektek = require('@hom3chuk/tektek')\r\nconst fs = require('fs')\r\n\r\nconst detect = tektek.detect\r\n\r\nconst har = JSON.parse(fs.readFileSync('example.har').toString())\r\n\r\nconst de = detect(har)\r\n\r\nconsole.log(de)\r\n```\r\n\r\n#### module\r\n\r\n```\r\nimport { detect } from '@hom3chuk/tektek'\r\nimport * as fs from 'fs'\r\n\r\nconst har = JSON.parse(fs.readFileSync('example.har').toString())\r\n\r\nconst de = detect(har)\r\n\r\nconsole.log(de)\r\n```\r\n\r\n### Options\r\n\r\nYou can run `detect` with additional options:\r\n```\r\nimport { detect } from '@hom3chuk/tektek'\r\nimport * as fs from 'fs'\r\n\r\nconst har = JSON.parse(fs.readFileSync('example.har').toString())\r\n\r\nconst de = detect(har, {\r\n    asap: false,\r\n    foundOnly: false,\r\n})\r\n\r\nconsole.log(de)\r\n```\r\n\r\n#### asap\r\n\r\nDefault is `true`\r\n\r\nSetting `asap` to true will prevent detectors from running through all of the rules as soon as the first match is found. Useful when you want a binary result for each technology. Each detector will return at most one `reason`:\r\n\r\n```\r\n[\r\n  {\r\n    detected: true,\r\n    name: 'Shopify',\r\n    reasons: [ 'has preload header' ]\r\n  }\r\n]\r\n```\r\n\r\nSetting `asap` to false will enforce detectors to run through all of the rules, even after the first match. Useful when you need as extensive of a profile as defined by the rules. Each detector can return multiple reasons:\r\n\r\n```\r\n[\r\n  {\r\n    detected: true,\r\n    name: 'Shopify',\r\n    reasons: [ 'has preload header', 'has powered-by header' ]\r\n  }\r\n]\r\n```\r\n\r\n#### foundOnly\r\n\r\nDefault is `true`\r\n\r\nSetting `foundOnly` to `true` will filter the results to only contain entries with positive detections:\r\n\r\n```\r\n[\r\n  {\r\n    detected: true,\r\n    name: 'Shopify',\r\n    reasons: [ 'has preload header' ]\r\n  }\r\n]\r\n\r\n```\r\n\r\nSetting `foundOnly` to `false` will return all of the detectors results available, even those that were not found:\r\n\r\n```\r\n[\r\n  { detected: false, name: 'Akamai Net Storage', reasons: [] },\r\n  { detected: false, name: 'nginx', reasons: [] },\r\n  {\r\n    detected: true,\r\n    name: 'Shopify',\r\n    reasons: [ 'has preload header' ]\r\n  }\r\n]\r\n\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhom3chuk%2Ftektek","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhom3chuk%2Ftektek","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhom3chuk%2Ftektek/lists"}