{"id":30648140,"url":"https://github.com/authgear/auth-toolkit","last_synced_at":"2025-08-31T05:44:57.774Z","repository":{"id":312307592,"uuid":"1047029458","full_name":"authgear/auth-toolkit","owner":"authgear","description":"In-browser JWT/JWE, JWK/JWKS, HMAC, SAML, and TOTP tools for developers. Perfect for authentication development and testing.","archived":false,"fork":false,"pushed_at":"2025-08-29T18:09:55.000Z","size":734,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-29T19:54:55.081Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://authgear.github.io/auth-toolkit/","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/authgear.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-08-29T16:13:02.000Z","updated_at":"2025-08-29T18:09:58.000Z","dependencies_parsed_at":"2025-08-29T19:54:56.379Z","dependency_job_id":"497764b8-1da8-441b-90ba-f4dc4f2cbf2d","html_url":"https://github.com/authgear/auth-toolkit","commit_stats":null,"previous_names":["authgear/auth-toolkit"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/authgear/auth-toolkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authgear%2Fauth-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authgear%2Fauth-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authgear%2Fauth-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authgear%2Fauth-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/authgear","download_url":"https://codeload.github.com/authgear/auth-toolkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/authgear%2Fauth-toolkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272944198,"owners_count":25019514,"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-08-31T02:00:09.071Z","response_time":79,"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":[],"created_at":"2025-08-31T05:44:54.722Z","updated_at":"2025-08-31T05:44:57.748Z","avatar_url":"https://github.com/authgear.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Auth Toolkit Landing Page\n\nAuth Developer Mini-Toolkit\nIn-browser JWT/JWE, JWK/JWKS, HMAC, SAML, and TOTP tools for developers. Perfect for authentication development and testing.\n\n## Local Development\n\n### Prerequisites\n\n- Node.js 18+ \n- pnpm (recommended) or npm\n\n### Setup\n\n1. **Install dependencies**\n   ```bash\n   pnpm install\n   ```\n\n2. **Start development server**\n   ```bash\n   pnpm dev\n   ```\n\n3. **Open your browser**\n   Navigate to [http://localhost:3000](http://localhost:3000)\n\n### Build Commands\n\n- **Development**: `pnpm dev`\n- **Build**: `pnpm build`\n- **Start Production**: `pnpm start`\n- **Lint**: `pnpm lint`\n\n## Project Structure\n\n```\nauth-toolkit/\n├── app/                 # Next.js app directory\n│   ├── globals.css     # Global styles\n│   ├── layout.tsx      # Root layout\n│   └── page.tsx        # Home page\n├── components/          # Reusable UI components\n│   └── ui/             # Base UI components\n├── data/               # Static data files\n├── lib/                # Utility functions\n└── public/             # Static assets\n```\n\n## Google Tag Manager Setup\n\nTo enable Google Tag Manager tracking:\n\n1. **Create environment file**\n   ```bash\n   cp env.example .env.local\n   ```\n\n2. **Set your GTM ID**\n   Edit `.env.local` and replace `GTM-XXXXXXX` with your actual GTM ID:\n   ```bash\n   NEXT_PUBLIC_GTM_ID=GTM-ABC123XY\n   ```\n\n3. **Deploy with environment variable**\n   - For local development: GTM will work automatically\n   - For production: Set the environment variable in your deployment platform\n   - For GitHub Pages: Add the environment variable to GitHub Actions secrets\n\n**Note**: The `.env.local` file is gitignored and won't be committed to the repository.\n\n## Deployment\n\n### GitHub Pages\n\nThis project is configured for static export and GitHub Pages deployment:\n\n1. **Build the project**\n   ```bash\n   pnpm build\n   ```\n\n2. **Deploy to GitHub Pages**\n   - Push to your repository\n   - Enable GitHub Pages in repository settings\n   - Set source to \"GitHub Actions\" or \"Deploy from a branch\"\n   - The `out/` directory contains the static files\n\n\n## Adding New Tools\n\nEdit `data/tools.json` to add new authentication tools:\n\n```json\n{\n  \"title\": \"Tool Name\",\n  \"description\": \"Tool description\",\n  \"url\": \"https://tool-url.com\",\n  \"icon\": \"IconName\"\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauthgear%2Fauth-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fauthgear%2Fauth-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fauthgear%2Fauth-toolkit/lists"}