{"id":22073209,"url":"https://github.com/pokedotdev/remix-deno","last_synced_at":"2026-05-03T22:34:02.543Z","repository":{"id":40312112,"uuid":"496394115","full_name":"pokedotdev/remix-deno","owner":"pokedotdev","description":null,"archived":false,"fork":false,"pushed_at":"2022-05-25T21:23:26.000Z","size":183,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T22:34:48.780Z","etag":null,"topics":["deno","remix","remix-run","tailwindcss"],"latest_commit_sha":null,"homepage":"","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/pokedotdev.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}},"created_at":"2022-05-25T21:23:01.000Z","updated_at":"2023-03-07T05:45:05.000Z","dependencies_parsed_at":"2022-06-28T20:33:29.325Z","dependency_job_id":null,"html_url":"https://github.com/pokedotdev/remix-deno","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pokedotdev/remix-deno","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pokedotdev%2Fremix-deno","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pokedotdev%2Fremix-deno/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pokedotdev%2Fremix-deno/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pokedotdev%2Fremix-deno/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pokedotdev","download_url":"https://codeload.github.com/pokedotdev/remix-deno/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pokedotdev%2Fremix-deno/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32587820,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"ssl_error","status_checked_at":"2026-05-03T22:09:10.534Z","response_time":103,"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":["deno","remix","remix-run","tailwindcss"],"created_at":"2024-11-30T21:17:31.072Z","updated_at":"2026-05-03T22:34:02.523Z","avatar_url":"https://github.com/pokedotdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Remix + Deno\n\nWelcome to the Deno template for Remix! 🦕\n\nFor more, check out the [Remix docs](https://remix.run/docs).\n\n## Install\n\n```sh\nnpx create-remix@latest --template deno\n```\n\n## Managing dependencies\n\nRead about [how we recommend to manage dependencies for Remix projects using Deno](https://github.com/remix-run/remix/blob/main/decisions/0001-use-npm-to-manage-npm-dependencies-for-deno-projects.md).\n\n- ✅ You should use `npm` to install NPM packages\n  ```sh\n  npm install react\n  ```\n  ```ts\n  import { useState } from \"react\";\n  ```\n- ✅ You may use inlined URL imports or [deps.ts](https://deno.land/manual/examples/manage_dependencies#managing-dependencies) for Deno modules.\n  ```ts\n  import { copy } from \"https://deno.land/std@0.138.0/streams/conversion.ts\";\n  ```\n- ❌ Do not use [import maps](https://deno.land/manual/linking_to_external_code/import_maps).\n\n## Development\n\nFrom your terminal:\n\n```sh\nnpm run dev\n```\n\nThis starts your app in development mode, rebuilding assets on file changes.\n\n### Type hints\n\nThis template provides type hinting to VS Code via a [dedicated import map](./.vscode/resolve_npm_imports.json).\n\nTo get types in another editor, use an extension for Deno that supports import maps and point your editor to `./.vscode/resolve_npm_imports.json`.\n\nFor more, see [our decision doc for interop between Deno and NPM](https://github.com/remix-run/remix/blob/main/decisions/0001-use-npm-to-manage-npm-dependencies-for-deno-projects.md#vs-code-type-hints).\n\n## Production\n\nFirst, build your app for production:\n\n```sh\nnpm run build\n```\n\nThen run the app in production mode:\n\n```sh\nnpm start\n```\n\n## Deployment\n\nBuilding the Deno app (`npm run build`) results in two outputs:\n\n- `build/` (server bundle)\n- `public/build/` (browser bundle)\n\nYou can deploy these bundles to any host that runs Deno, but here we'll focus on deploying to [Deno Deploy](https://deno.com/deploy).\n\n## Setting up Deno Deploy\n\n1. [Sign up](https://dash.deno.com/signin) for Deno Deploy.\n\n2. [Create a new Deno Deploy project](https://dash.deno.com/new) for this app.\n\n3. Replace `\u003cyour deno deploy project\u003e` in the `deploy` script in `package.json` with your Deno Deploy project name:\n\n```json\n{\n  \"scripts\": {\n    \"deploy\": \"deployctl deploy --project=\u003cyour deno deploy project\u003e --include=.cache,build,public ./build/index.js\"\n  }\n}\n```\n\n4. [Create a personal access token](https://dash.deno.com/account) for the Deno Deploy API and export it as `DENO_DEPLOY_TOKEN`:\n\n```sh\nexport DENO_DEPLOY_TOKEN=\u003cyour Deno Deploy API token\u003e\n```\n\nYou may want to add this to your `rc` file (e.g. `.bashrc` or `.zshrc`) to make it available for new terminal sessions, but make sure you don't commit this token into `git`.\nIf you want to use this token in GitHub Actions, set it as a GitHub secret.\n\n5. Install the Deno Deploy CLI, [`deployctl`](https://github.com/denoland/deployctl):\n\n```sh\ndeno install --allow-read --allow-write --allow-env --allow-net --allow-run --no-check -r -f https://deno.land/x/deploy/deployctl.ts\n```\n\n6. If you have previously installed the Deno Deploy CLI, you should update it to the latest version:\n\n```sh\ndeployctl upgrade\n```\n\n### Deploying to Deno Deploy\n\nAfter you've set up Deno Deploy, run:\n\n```sh\nnpm run deploy\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpokedotdev%2Fremix-deno","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpokedotdev%2Fremix-deno","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpokedotdev%2Fremix-deno/lists"}