{"id":19360014,"url":"https://github.com/chiselstrike/deno","last_synced_at":"2025-08-21T17:25:19.013Z","repository":{"id":103032060,"uuid":"459646284","full_name":"chiselstrike/deno","owner":"chiselstrike","description":null,"archived":false,"fork":false,"pushed_at":"2022-06-01T17:16:17.000Z","size":62495,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-22T18:53:24.500Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/chiselstrike.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"denoland"}},"created_at":"2022-02-15T15:53:01.000Z","updated_at":"2022-02-15T18:58:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"d39a0399-f007-428e-b57f-2cade8b2da4b","html_url":"https://github.com/chiselstrike/deno","commit_stats":null,"previous_names":[],"tags_count":217,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chiselstrike%2Fdeno","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chiselstrike%2Fdeno/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chiselstrike%2Fdeno/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chiselstrike%2Fdeno/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chiselstrike","download_url":"https://codeload.github.com/chiselstrike/deno/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240475237,"owners_count":19807292,"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":[],"created_at":"2024-11-10T07:16:50.573Z","updated_at":"2025-02-24T12:18:11.534Z","avatar_url":"https://github.com/chiselstrike.png","language":"Rust","funding_links":["https://github.com/sponsors/denoland"],"categories":[],"sub_categories":[],"readme":"# Deno\n\n[![Build Status - Cirrus][]][Build status] [![Twitter handle][]][Twitter badge]\n[![Discord Chat](https://img.shields.io/discord/684898665143206084?logo=discord\u0026style=social)](https://discord.gg/deno)\n\n\u003cimg align=\"right\" src=\"https://deno.land/logo.svg\" height=\"150px\" alt=\"the deno mascot dinosaur standing in the rain\"\u003e\n\nDeno is a _simple_, _modern_ and _secure_ runtime for **JavaScript** and\n**TypeScript** that uses V8 and is built in Rust.\n\n### Features\n\n- Secure by default. No file, network, or environment access, unless explicitly\n  enabled.\n- Supports TypeScript out of the box.\n- Ships only a single executable file.\n- [Built-in utilities.](https://deno.land/manual/tools#built-in-tooling)\n- Set of reviewed standard modules that are guaranteed to work with\n  [Deno](https://deno.land/std/).\n\n### Install\n\nShell (Mac, Linux):\n\n```sh\ncurl -fsSL https://deno.land/x/install/install.sh | sh\n```\n\nPowerShell (Windows):\n\n```powershell\niwr https://deno.land/x/install/install.ps1 -useb | iex\n```\n\n[Homebrew](https://formulae.brew.sh/formula/deno) (Mac):\n\n```sh\nbrew install deno\n```\n\n[Chocolatey](https://chocolatey.org/packages/deno) (Windows):\n\n```powershell\nchoco install deno\n```\n\n[Scoop](https://scoop.sh/) (Windows):\n\n```powershell\nscoop install deno\n```\n\nBuild and install from source using [Cargo](https://crates.io/crates/deno):\n\n```sh\ncargo install deno --locked\n```\n\nSee\n[deno_install](https://github.com/denoland/deno_install/blob/master/README.md)\nand [releases](https://github.com/denoland/deno/releases) for other options.\n\n### Getting Started\n\nTry running a simple program:\n\n```sh\ndeno run https://deno.land/std/examples/welcome.ts\n```\n\nOr a more complex one:\n\n```ts\nconst listener = Deno.listen({ port: 8000 });\nconsole.log(\"http://localhost:8000/\");\n\nfor await (const conn of listener) {\n  serve(conn);\n}\n\nasync function serve(conn: Deno.Conn) {\n  for await (const { respondWith } of Deno.serveHttp(conn)) {\n    respondWith(new Response(\"Hello world\"));\n  }\n}\n```\n\nYou can find a deeper introduction, examples, and environment setup guides in\nthe [manual](https://deno.land/manual).\n\nThe complete API reference is available at the runtime\n[documentation](https://doc.deno.land).\n\n### Contributing\n\nWe appreciate your help!\n\nTo contribute, please read our\n[contributing instructions](https://deno.land/manual/contributing).\n\n[Build Status - Cirrus]: https://github.com/denoland/deno/workflows/ci/badge.svg?branch=main\u0026event=push\n[Build status]: https://github.com/denoland/deno/actions\n[Twitter badge]: https://twitter.com/intent/follow?screen_name=deno_land\n[Twitter handle]: https://img.shields.io/twitter/follow/deno_land.svg?style=social\u0026label=Follow\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchiselstrike%2Fdeno","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchiselstrike%2Fdeno","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchiselstrike%2Fdeno/lists"}