{"id":19215177,"url":"https://github.com/arcjet/example-remix","last_synced_at":"2025-10-30T21:51:06.363Z","repository":{"id":260188889,"uuid":"880563629","full_name":"arcjet/example-remix","owner":"arcjet","description":"An example Remix application protected by Arcjet.","archived":false,"fork":false,"pushed_at":"2025-04-10T11:32:56.000Z","size":729,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-10T12:52:23.076Z","etag":null,"topics":["bot-detection","developer","javascript","nodejs","pii-detection","rate-limiting","remix","remix-run","security","security-tools","typescript"],"latest_commit_sha":null,"homepage":"https://example.arcjet.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arcjet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-30T00:19:14.000Z","updated_at":"2025-04-10T11:30:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"bc79de0c-8d54-4231-a39d-66505dbdc0cf","html_url":"https://github.com/arcjet/example-remix","commit_stats":null,"previous_names":["arcjet/example-remix"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arcjet%2Fexample-remix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arcjet%2Fexample-remix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arcjet%2Fexample-remix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arcjet%2Fexample-remix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arcjet","download_url":"https://codeload.github.com/arcjet/example-remix/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249042872,"owners_count":21203371,"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","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":["bot-detection","developer","javascript","nodejs","pii-detection","rate-limiting","remix","remix-run","security","security-tools","typescript"],"created_at":"2024-11-09T14:12:55.198Z","updated_at":"2025-10-30T21:51:06.357Z","avatar_url":"https://github.com/arcjet.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ca href=\"https://arcjet.com\" target=\"_arcjet-home\"\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://arcjet.com/logo/arcjet-dark-lockup-voyage-horizontal.svg\"\u003e\n    \u003cimg src=\"https://arcjet.com/logo/arcjet-light-lockup-voyage-horizontal.svg\" alt=\"Arcjet Logo\" height=\"128\" width=\"auto\"\u003e\n  \u003c/picture\u003e\n\u003c/a\u003e\n\n\u003e [!IMPORTANT]\n\u003e\n\u003e [Remix is now React Router v7](https://remix.run/blog/incremental-path-to-react-19).\n\n# Arcjet Remix example app\n\n[Arcjet](https://arcjet.com) helps developers protect their apps in just a few\nlines of code. Bot detection. Rate limiting. Email validation. Attack\nprotection. Data redaction. A developer-first approach to security.\n\nThis is an example Remix application demonstrating the use of multiple features.\nThere is a version deployed at\n[https://example.arcjet.com](https://example.arcjet.com).\n\n## Features\n\n- [Signup form protection](https://example.arcjet.com/signup) uses Arcjet's\n  server-side email verification configured to block disposable providers and\n  ensure that the domain has a valid MX record. It also includes rate limiting\n  and bot protection to prevent automated abuse.\n- [Bot protection](https://example.arcjet.com/bots) shows how a page can be\n  protected from automated clients.\n- [Rate limiting](https://example.arcjet.com/rate-limiting) shows the use of\n  different rate limit configurations depending on the authenticated user. A\n  logged-in user can make more requests than an anonymous user.\n- [Attack protection](https://example.arcjet.com/attack) demonstrates Arcjet\n  Shield, which detects suspicious behavior, such as SQL injection and\n  cross-site scripting attacks.\n- [Sensitive info](https://example.arcjet.com/sensitive-info) protects against\n  clients sending you sensitive information such as PII that you do not wish to\n  handle.\n\n## Run locally\n\n1. [Register for a free Arcjet account](https://app.arcjet.com).\n\n2. Install dependencies:\n\n```bash\nnpm ci\n```\n\n3. Rename `.env.example` to `.env` and add your Arcjet key. If you want to test\n   the rate limiting authentication, you will also need to add a GitHub app key\n   and secret after [creating a GitHub OAuth\n   app](https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/creating-an-oauth-app).\n\n4. Start the dev server\n\n```bash\nnpm run dev\n```\n\n5. Open [http://localhost:3000](http://localhost:3000) in your browser.\n\n## Deploy\n\nIf you use this for production, edit the `app/sessions.server.ts` file to\ninclude your domain.\n\n## Need help?\n\nCheck out [the docs](https://docs.arcjet.com/), [contact\nsupport](https://docs.arcjet.com/support), or [join our Discord\nserver](https://arcjet.com/discord).\n\n## Stack\n\n- Auth: [Auth.js](https://authjs.dev/)\n- App: [Remix](https://remix.run/)\n- UI: [shadcn/ui](https://ui.shadcn.com/) + [Tailwind\n  CSS](https://tailwindcss.com/)\n- Security: [Arcjet](https://arcjet.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farcjet%2Fexample-remix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farcjet%2Fexample-remix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farcjet%2Fexample-remix/lists"}