├── .editorconfig ├── .eslintrc.json ├── .github ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── artwork.json ├── components ├── BenchmarkChart.tsx ├── CodeBlock.tsx ├── CookieBanner.tsx ├── DependencyGraph.tsx ├── DirectoryListing.tsx ├── ErrorMessage.tsx ├── FileDisplay.tsx ├── Footer.tsx ├── Header.tsx ├── InlineCode.tsx ├── LoadingPage.tsx ├── Manual.tsx ├── Markdown.tsx ├── NotFound.tsx ├── Registry.tsx ├── RegistryInstructions.tsx ├── Transition.tsx ├── app.css ├── docsearch.css └── markdown.css ├── docs ├── contributing.md ├── contributing │ ├── architecture.md │ ├── building_from_source.md │ ├── development_tools.md │ ├── profiling.md │ ├── release_schedule.md │ ├── style_guide.md │ └── web_platform_tests.md ├── embedding_deno.md ├── examples.md ├── examples │ ├── fetch_data.md │ ├── file_server.md │ ├── file_system_events.md │ ├── hello_world.md │ ├── http_server.md │ ├── import_export.md │ ├── manage_dependencies.md │ ├── module_metadata.md │ ├── os_signals.md │ ├── read_write_files.md │ ├── subprocess.md │ ├── tcp_echo.md │ └── unix_cat.md ├── getting_started.md ├── getting_started │ ├── command_line_interface.md │ ├── debugging_your_code.md │ ├── first_steps.md │ ├── installation.md │ ├── permissions.md │ ├── setup_your_environment.md │ ├── typescript.md │ └── webassembly.md ├── help.md ├── images │ ├── debugger1.jpg │ ├── debugger2.jpg │ ├── debugger3.jpg │ ├── debugger4.jpg │ ├── debugger5.jpg │ ├── debugger7.jpg │ └── deno3.png ├── introduction.md ├── linking_to_external_code.md ├── linking_to_external_code │ ├── import_maps.md │ ├── integrity_checking.md │ ├── private.md │ ├── proxies.md │ └── reloading_modules.md ├── runtime.md ├── runtime │ ├── compiler_apis.md │ ├── location_api.md │ ├── permission_apis.md │ ├── program_lifecycle.md │ ├── stability.md │ ├── web_platform_apis.md │ └── workers.md ├── schemas │ └── module-graph.json ├── standard_library.md ├── testing.md ├── testing │ └── assertions.md ├── toc.ja.json ├── toc.json ├── tools.md ├── tools │ ├── bundler.md │ ├── compiler.md │ ├── dependency_inspector.md │ ├── documentation_generator.md │ ├── formatter.md │ ├── linter.md │ ├── repl.md │ ├── script_installer.md │ └── typescript.md └── typescript │ ├── configuration.md │ ├── faqs.md │ ├── migration.md │ ├── overview.md │ ├── runtime.md │ └── types.md ├── jest.config.js ├── next-env.d.ts ├── next.config.js ├── now.json ├── package.json ├── pages ├── [...rest].tsx ├── _app.tsx ├── _document.tsx ├── artwork.tsx ├── benchmarks.tsx ├── index.tsx ├── status │ └── [id].tsx ├── translations.tsx ├── v1 │ └── hoodie.tsx └── x │ ├── [...rest].tsx │ └── index.tsx ├── postcss.config.js ├── proxy ├── deps.ts ├── fly.toml ├── integration_test.ts ├── main.ts ├── mod.ts ├── src │ ├── registry.ts │ ├── registry_test.ts │ ├── utils.ts │ ├── vscode.ts │ └── website.ts └── test_deps.ts ├── public ├── .well-known │ ├── deno-completion-manifest.json │ ├── deno-import-intellisense.json │ └── security.txt ├── favicon.ico ├── favicon.svg ├── fonts │ └── inter │ │ ├── Inter-Black.woff │ │ ├── Inter-Black.woff2 │ │ ├── Inter-BlackItalic.woff │ │ ├── Inter-BlackItalic.woff2 │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-ExtraBold.woff │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraBoldItalic.woff │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ ├── Inter-ExtraLight.woff │ │ ├── Inter-ExtraLight.woff2 │ │ ├── Inter-ExtraLightItalic.woff │ │ ├── Inter-ExtraLightItalic.woff2 │ │ ├── Inter-Italic.woff │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light.woff │ │ ├── Inter-Light.woff2 │ │ ├── Inter-LightItalic.woff │ │ ├── Inter-LightItalic.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── Inter-Thin.woff │ │ ├── Inter-Thin.woff2 │ │ ├── Inter-ThinItalic.woff │ │ ├── Inter-ThinItalic.woff2 │ │ ├── Inter-italic.var.woff2 │ │ ├── Inter-roman.var.woff2 │ │ ├── Inter.var.woff2 │ │ └── inter.css ├── images │ ├── DenoLogo3D-Anim.gif │ ├── add_webhook.mp4 │ ├── deno-in-2020.png │ ├── deno404.gif │ ├── deno_city.jpeg │ ├── deno_logo.png │ ├── deno_logo_4.gif │ ├── deno_matrix.png │ ├── deno_paper.png │ ├── deno_sun.png │ ├── deno_v1_congrats.jpeg │ ├── discodeno.gif │ ├── duri4n.png │ ├── ferris.gif │ ├── glitchy-deno.jpg │ ├── hashrock_simple.png │ ├── icons │ │ ├── apple-touch-icon-180x180.png │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ └── icon-96x96.png │ ├── jurassicDeno.jpg │ ├── schematic_v0.2.png │ └── stone.jpeg ├── logo.svg ├── robots.txt ├── site.webmanifest ├── v1.jpg ├── v1.png ├── v1_hoodie_mock.png ├── v1_wide.jpg └── v1_wide.png ├── tailwind.config.js ├── tools └── generate_emojis.js ├── translations.json ├── tsconfig.json ├── util ├── artwork_utils.ts ├── benchmark_utils.ts ├── emoji_util.ts ├── emoji_utils.test.ts ├── emojis.json ├── manual_utils.test.ts ├── manual_utils.ts ├── pagination_utils.test.ts ├── pagination_utils.ts ├── registry_utils.test.ts ├── registry_utils.ts └── translations_utils.ts ├── versions.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | README.md -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "proseWrap": "always" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/README.md -------------------------------------------------------------------------------- /artwork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/artwork.json -------------------------------------------------------------------------------- /components/BenchmarkChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/BenchmarkChart.tsx -------------------------------------------------------------------------------- /components/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/CodeBlock.tsx -------------------------------------------------------------------------------- /components/CookieBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/CookieBanner.tsx -------------------------------------------------------------------------------- /components/DependencyGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/DependencyGraph.tsx -------------------------------------------------------------------------------- /components/DirectoryListing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/DirectoryListing.tsx -------------------------------------------------------------------------------- /components/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/ErrorMessage.tsx -------------------------------------------------------------------------------- /components/FileDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/FileDisplay.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/InlineCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/InlineCode.tsx -------------------------------------------------------------------------------- /components/LoadingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/LoadingPage.tsx -------------------------------------------------------------------------------- /components/Manual.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/Manual.tsx -------------------------------------------------------------------------------- /components/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/Markdown.tsx -------------------------------------------------------------------------------- /components/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/NotFound.tsx -------------------------------------------------------------------------------- /components/Registry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/Registry.tsx -------------------------------------------------------------------------------- /components/RegistryInstructions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/RegistryInstructions.tsx -------------------------------------------------------------------------------- /components/Transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/Transition.tsx -------------------------------------------------------------------------------- /components/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/app.css -------------------------------------------------------------------------------- /components/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/docsearch.css -------------------------------------------------------------------------------- /components/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/components/markdown.css -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/contributing/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/contributing/architecture.md -------------------------------------------------------------------------------- /docs/contributing/building_from_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/contributing/building_from_source.md -------------------------------------------------------------------------------- /docs/contributing/development_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/contributing/development_tools.md -------------------------------------------------------------------------------- /docs/contributing/profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/contributing/profiling.md -------------------------------------------------------------------------------- /docs/contributing/release_schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/contributing/release_schedule.md -------------------------------------------------------------------------------- /docs/contributing/style_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/contributing/style_guide.md -------------------------------------------------------------------------------- /docs/contributing/web_platform_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/contributing/web_platform_tests.md -------------------------------------------------------------------------------- /docs/embedding_deno.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/embedding_deno.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/examples/fetch_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/fetch_data.md -------------------------------------------------------------------------------- /docs/examples/file_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/file_server.md -------------------------------------------------------------------------------- /docs/examples/file_system_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/file_system_events.md -------------------------------------------------------------------------------- /docs/examples/hello_world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/hello_world.md -------------------------------------------------------------------------------- /docs/examples/http_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/http_server.md -------------------------------------------------------------------------------- /docs/examples/import_export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/import_export.md -------------------------------------------------------------------------------- /docs/examples/manage_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/manage_dependencies.md -------------------------------------------------------------------------------- /docs/examples/module_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/module_metadata.md -------------------------------------------------------------------------------- /docs/examples/os_signals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/os_signals.md -------------------------------------------------------------------------------- /docs/examples/read_write_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/read_write_files.md -------------------------------------------------------------------------------- /docs/examples/subprocess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/subprocess.md -------------------------------------------------------------------------------- /docs/examples/tcp_echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/tcp_echo.md -------------------------------------------------------------------------------- /docs/examples/unix_cat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/examples/unix_cat.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/getting_started/command_line_interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/getting_started/command_line_interface.md -------------------------------------------------------------------------------- /docs/getting_started/debugging_your_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/getting_started/debugging_your_code.md -------------------------------------------------------------------------------- /docs/getting_started/first_steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/getting_started/first_steps.md -------------------------------------------------------------------------------- /docs/getting_started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/getting_started/installation.md -------------------------------------------------------------------------------- /docs/getting_started/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/getting_started/permissions.md -------------------------------------------------------------------------------- /docs/getting_started/setup_your_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/getting_started/setup_your_environment.md -------------------------------------------------------------------------------- /docs/getting_started/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/getting_started/typescript.md -------------------------------------------------------------------------------- /docs/getting_started/webassembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/getting_started/webassembly.md -------------------------------------------------------------------------------- /docs/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/help.md -------------------------------------------------------------------------------- /docs/images/debugger1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/images/debugger1.jpg -------------------------------------------------------------------------------- /docs/images/debugger2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/images/debugger2.jpg -------------------------------------------------------------------------------- /docs/images/debugger3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/images/debugger3.jpg -------------------------------------------------------------------------------- /docs/images/debugger4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/images/debugger4.jpg -------------------------------------------------------------------------------- /docs/images/debugger5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/images/debugger5.jpg -------------------------------------------------------------------------------- /docs/images/debugger7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/images/debugger7.jpg -------------------------------------------------------------------------------- /docs/images/deno3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/images/deno3.png -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/linking_to_external_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/linking_to_external_code.md -------------------------------------------------------------------------------- /docs/linking_to_external_code/import_maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/linking_to_external_code/import_maps.md -------------------------------------------------------------------------------- /docs/linking_to_external_code/integrity_checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/linking_to_external_code/integrity_checking.md -------------------------------------------------------------------------------- /docs/linking_to_external_code/private.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/linking_to_external_code/private.md -------------------------------------------------------------------------------- /docs/linking_to_external_code/proxies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/linking_to_external_code/proxies.md -------------------------------------------------------------------------------- /docs/linking_to_external_code/reloading_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/linking_to_external_code/reloading_modules.md -------------------------------------------------------------------------------- /docs/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/runtime.md -------------------------------------------------------------------------------- /docs/runtime/compiler_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/runtime/compiler_apis.md -------------------------------------------------------------------------------- /docs/runtime/location_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/runtime/location_api.md -------------------------------------------------------------------------------- /docs/runtime/permission_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/runtime/permission_apis.md -------------------------------------------------------------------------------- /docs/runtime/program_lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/runtime/program_lifecycle.md -------------------------------------------------------------------------------- /docs/runtime/stability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/runtime/stability.md -------------------------------------------------------------------------------- /docs/runtime/web_platform_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/runtime/web_platform_apis.md -------------------------------------------------------------------------------- /docs/runtime/workers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/runtime/workers.md -------------------------------------------------------------------------------- /docs/schemas/module-graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/schemas/module-graph.json -------------------------------------------------------------------------------- /docs/standard_library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/standard_library.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/testing/assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/testing/assertions.md -------------------------------------------------------------------------------- /docs/toc.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/toc.ja.json -------------------------------------------------------------------------------- /docs/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/toc.json -------------------------------------------------------------------------------- /docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/tools.md -------------------------------------------------------------------------------- /docs/tools/bundler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/tools/bundler.md -------------------------------------------------------------------------------- /docs/tools/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/tools/compiler.md -------------------------------------------------------------------------------- /docs/tools/dependency_inspector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/tools/dependency_inspector.md -------------------------------------------------------------------------------- /docs/tools/documentation_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/tools/documentation_generator.md -------------------------------------------------------------------------------- /docs/tools/formatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/tools/formatter.md -------------------------------------------------------------------------------- /docs/tools/linter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/tools/linter.md -------------------------------------------------------------------------------- /docs/tools/repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/tools/repl.md -------------------------------------------------------------------------------- /docs/tools/script_installer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/tools/script_installer.md -------------------------------------------------------------------------------- /docs/tools/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/tools/typescript.md -------------------------------------------------------------------------------- /docs/typescript/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/typescript/configuration.md -------------------------------------------------------------------------------- /docs/typescript/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/typescript/faqs.md -------------------------------------------------------------------------------- /docs/typescript/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/typescript/migration.md -------------------------------------------------------------------------------- /docs/typescript/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/typescript/overview.md -------------------------------------------------------------------------------- /docs/typescript/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/typescript/runtime.md -------------------------------------------------------------------------------- /docs/typescript/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/docs/typescript/types.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/jest.config.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/next.config.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/package.json -------------------------------------------------------------------------------- /pages/[...rest].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/[...rest].tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/artwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/artwork.tsx -------------------------------------------------------------------------------- /pages/benchmarks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/benchmarks.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/status/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/status/[id].tsx -------------------------------------------------------------------------------- /pages/translations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/translations.tsx -------------------------------------------------------------------------------- /pages/v1/hoodie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/v1/hoodie.tsx -------------------------------------------------------------------------------- /pages/x/[...rest].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/x/[...rest].tsx -------------------------------------------------------------------------------- /pages/x/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/pages/x/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/postcss.config.js -------------------------------------------------------------------------------- /proxy/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/deps.ts -------------------------------------------------------------------------------- /proxy/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/fly.toml -------------------------------------------------------------------------------- /proxy/integration_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/integration_test.ts -------------------------------------------------------------------------------- /proxy/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/main.ts -------------------------------------------------------------------------------- /proxy/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/mod.ts -------------------------------------------------------------------------------- /proxy/src/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/src/registry.ts -------------------------------------------------------------------------------- /proxy/src/registry_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/src/registry_test.ts -------------------------------------------------------------------------------- /proxy/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/src/utils.ts -------------------------------------------------------------------------------- /proxy/src/vscode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/src/vscode.ts -------------------------------------------------------------------------------- /proxy/src/website.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/src/website.ts -------------------------------------------------------------------------------- /proxy/test_deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/proxy/test_deps.ts -------------------------------------------------------------------------------- /public/.well-known/deno-completion-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/.well-known/deno-completion-manifest.json -------------------------------------------------------------------------------- /public/.well-known/deno-import-intellisense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/.well-known/deno-import-intellisense.json -------------------------------------------------------------------------------- /public/.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/.well-known/security.txt -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Black.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Bold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Italic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Italic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Light.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-LightItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Medium.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Regular.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Regular.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-SemiBold.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Thin.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-Thin.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /public/fonts/inter/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/Inter.var.woff2 -------------------------------------------------------------------------------- /public/fonts/inter/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/fonts/inter/inter.css -------------------------------------------------------------------------------- /public/images/DenoLogo3D-Anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/DenoLogo3D-Anim.gif -------------------------------------------------------------------------------- /public/images/add_webhook.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/add_webhook.mp4 -------------------------------------------------------------------------------- /public/images/deno-in-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/deno-in-2020.png -------------------------------------------------------------------------------- /public/images/deno404.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/deno404.gif -------------------------------------------------------------------------------- /public/images/deno_city.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/deno_city.jpeg -------------------------------------------------------------------------------- /public/images/deno_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/deno_logo.png -------------------------------------------------------------------------------- /public/images/deno_logo_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/deno_logo_4.gif -------------------------------------------------------------------------------- /public/images/deno_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/deno_matrix.png -------------------------------------------------------------------------------- /public/images/deno_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/deno_paper.png -------------------------------------------------------------------------------- /public/images/deno_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/deno_sun.png -------------------------------------------------------------------------------- /public/images/deno_v1_congrats.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/deno_v1_congrats.jpeg -------------------------------------------------------------------------------- /public/images/discodeno.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/discodeno.gif -------------------------------------------------------------------------------- /public/images/duri4n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/duri4n.png -------------------------------------------------------------------------------- /public/images/ferris.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/ferris.gif -------------------------------------------------------------------------------- /public/images/glitchy-deno.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/glitchy-deno.jpg -------------------------------------------------------------------------------- /public/images/hashrock_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/hashrock_simple.png -------------------------------------------------------------------------------- /public/images/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/images/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/icons/icon-128x128.png -------------------------------------------------------------------------------- /public/images/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/icons/icon-144x144.png -------------------------------------------------------------------------------- /public/images/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/icons/icon-152x152.png -------------------------------------------------------------------------------- /public/images/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/images/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/icons/icon-384x384.png -------------------------------------------------------------------------------- /public/images/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/icons/icon-512x512.png -------------------------------------------------------------------------------- /public/images/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/icons/icon-72x72.png -------------------------------------------------------------------------------- /public/images/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/icons/icon-96x96.png -------------------------------------------------------------------------------- /public/images/jurassicDeno.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/jurassicDeno.jpg -------------------------------------------------------------------------------- /public/images/schematic_v0.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/schematic_v0.2.png -------------------------------------------------------------------------------- /public/images/stone.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/images/stone.jpeg -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/v1.jpg -------------------------------------------------------------------------------- /public/v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/v1.png -------------------------------------------------------------------------------- /public/v1_hoodie_mock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/v1_hoodie_mock.png -------------------------------------------------------------------------------- /public/v1_wide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/v1_wide.jpg -------------------------------------------------------------------------------- /public/v1_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/public/v1_wide.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tools/generate_emojis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/tools/generate_emojis.js -------------------------------------------------------------------------------- /translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/translations.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/tsconfig.json -------------------------------------------------------------------------------- /util/artwork_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/artwork_utils.ts -------------------------------------------------------------------------------- /util/benchmark_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/benchmark_utils.ts -------------------------------------------------------------------------------- /util/emoji_util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/emoji_util.ts -------------------------------------------------------------------------------- /util/emoji_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/emoji_utils.test.ts -------------------------------------------------------------------------------- /util/emojis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/emojis.json -------------------------------------------------------------------------------- /util/manual_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/manual_utils.test.ts -------------------------------------------------------------------------------- /util/manual_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/manual_utils.ts -------------------------------------------------------------------------------- /util/pagination_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/pagination_utils.test.ts -------------------------------------------------------------------------------- /util/pagination_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/pagination_utils.ts -------------------------------------------------------------------------------- /util/registry_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/registry_utils.test.ts -------------------------------------------------------------------------------- /util/registry_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/registry_utils.ts -------------------------------------------------------------------------------- /util/translations_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/util/translations_utils.ts -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/versions.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokiedokie/deno_website2_japanese/HEAD/yarn.lock --------------------------------------------------------------------------------