{"id":16235976,"url":"https://github.com/lukethacoder/dvlp-haus","last_synced_at":"2026-01-26T20:54:31.909Z","repository":{"id":37733244,"uuid":"167561393","full_name":"lukethacoder/dvlp-haus","owner":"lukethacoder","description":"🍱 Essential developer tools to make your life easier. Productive. Accessible. Open Source.","archived":false,"fork":false,"pushed_at":"2024-09-18T01:28:44.000Z","size":1915,"stargazers_count":3,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-03T04:23:03.240Z","etag":null,"topics":["nextjs","radix-ui","shadcn-ui","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"https://dvlp.haus","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lukethacoder.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2019-01-25T14:37:50.000Z","updated_at":"2024-04-04T13:40:48.000Z","dependencies_parsed_at":"2024-10-27T21:07:55.260Z","dependency_job_id":null,"html_url":"https://github.com/lukethacoder/dvlp-haus","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lukethacoder/dvlp-haus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukethacoder%2Fdvlp-haus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukethacoder%2Fdvlp-haus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukethacoder%2Fdvlp-haus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukethacoder%2Fdvlp-haus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lukethacoder","download_url":"https://codeload.github.com/lukethacoder/dvlp-haus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukethacoder%2Fdvlp-haus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28787634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T13:55:28.044Z","status":"ssl_error","status_checked_at":"2026-01-26T13:55:26.068Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["nextjs","radix-ui","shadcn-ui","tailwindcss","typescript"],"created_at":"2024-10-10T13:28:29.882Z","updated_at":"2026-01-26T20:54:31.893Z","avatar_url":"https://github.com/lukethacoder.png","language":"TypeScript","readme":"\u003cdiv align=\"center\"\u003e\n  \u003cbr\u003e\n  \u003cbr\u003e\n  \u003cimg alt=\"dvlp.haus\" src=\"./docs/dvlp-haus-banner.svg\" width=\"500\"\u003e\n  \u003cbr\u003e\n  \u003cbr\u003e\n  \u003cstrong\u003eEssential developer tools to make your life easier.\u003cbr/\u003e\nProductive. Accessible. Open Source.\u003c/strong\u003e\n\u003c/div\u003e\n\u003cbr\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://app.netlify.com/sites/dvlp-haus/deploys\"\u003e\n    \u003cimg src=\"https://therealsujitk-vercel-badge.vercel.app/?app=dvlp-haus\" alt=\"vercel deployment status for dvlp.haus\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## 🍱 Tools\n\n### Converters\n\n- [Font Size Converter](https://dvlp.haus/tools/font-size-converter)\n- [SVG to base64](https://dvlp.haus/tools/svg-to-base64)\n\n### Math\n\n- [Aspect Ratio Calculator](https://dvlp.haus/tools/font-size-converter)\n\n## 🔥 Local Development\n\n**Install the node_modules.**\n\n```shell\npnpm install\n```\n\n**Edit the Environment variables.**\n\n```env\nNEXT_PUBLIC_CLARITY_CODE=abcdefghij\nNEXT_PUBLIC_GOAT_COUNTER=stats.your.domain\nGOAT_COUNTER_AUTH_TOKEN=12345678901234567890123456789012abcdefghijklmopq\n```\n\n**Start the site in `dev` mode.**\n\n```sh\npnpm dev\n```\n\n**Open the code in your IDE of choice and start editing!**\n\nYour site is now running at `http://localhost:3000`.\n\n## ⚙️ Tools\n\nConfiguring a new tool requires a few steps:\n\n### Create a new folder with the following files in `./tools/{my-new-tool}/`\n\n```\n.\n└── tools/\n    ├── index.ts\n    └── my-new-tool/\n        ├── content.mdx // description and/or documentation\n        ├── index.tsx // tool config\n        └── server.tsx // main entry point for your component\n```\n\n`content.mdx`\n\nThis is an optional file to describe the tool and provide any extra documentation\n\n`index.tsx`\n\n```ts\nimport { ITool } from '@/lib/tools'\n\nconst CONFIG: ITool = {\n  slug: 'my-new-tool',\n  name: 'My New Tool',\n  description:\n    'Short description about the tool. Used for Card displays and SEO.',\n  category: 'math', // check the ./lib/tools/index.ts file for allowed categories, and/or allow TS to tell you\n  goatPathId: 1234, // optional goatcounter path id (will not be known for new tools yet to have had page hits)\n}\n\nexport default CONFIG\n```\n\n`server.tsx`\n\nThis is the main entry point for your component. If you do not require `'use client'`, you may build your component directly here. If you do require `'use client'`, create a `client.tsx` file and import it here using the following boilerplate in your `server.tsx` file.\n\n```tsx\nimport { Suspense } from 'react'\n\nimport { Client } from './client'\n\nexport default function ServerComponent() {\n  return (\n    \u003cspan\u003e\n      \u003cSuspense\u003e\n        \u003cClient /\u003e\n      \u003c/Suspense\u003e\n    \u003c/span\u003e\n  )\n}\n```\n\n### Update `./tools/index.ts`\n\nAdd your new component to the following config constants:\n\n- `TOOL_NAMES` - add the slug value of your tool (e.g. `my-new-tool`)\n- `TOOLS` - add the new slug and the config (`ITool`)\n- `TOOL_COMPONENTS` - add a `component` key and an optional `content` key that both resolve React components\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukethacoder%2Fdvlp-haus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flukethacoder%2Fdvlp-haus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukethacoder%2Fdvlp-haus/lists"}