# The Internals of Deno

## The Internals of Deno

- [The Internals of Deno](https://choubey.gitbook.io/internals-of-deno/master.md)
- [Audience](https://choubey.gitbook.io/internals-of-deno/audience.md)
- [Reviews](https://choubey.gitbook.io/internals-of-deno/reviews.md)
- [Translations](https://choubey.gitbook.io/internals-of-deno/translations.md)
- [Formats](https://choubey.gitbook.io/internals-of-deno/formats.md)
- [Contents](https://choubey.gitbook.io/internals-of-deno/content.md)
- [1.0 Cover page](https://choubey.gitbook.io/internals-of-deno/introduction/chapter-cover-page.md)
- [1.1 Introduction](https://choubey.gitbook.io/internals-of-deno/introduction/introduction.md)
- [1.2 History of Deno](https://choubey.gitbook.io/internals-of-deno/introduction/history-of-deno.md)
- [1.3 About Deno](https://choubey.gitbook.io/internals-of-deno/introduction/about.md)
- [1.4 Releases](https://choubey.gitbook.io/internals-of-deno/introduction/releases.md)
- [1.5 The Deno Company](https://choubey.gitbook.io/internals-of-deno/introduction/1.5-the-deno-company.md)
- [1.6 Deno's source](https://choubey.gitbook.io/internals-of-deno/introduction/1.6-denos-source.md)
- [1.7 What's next](https://choubey.gitbook.io/internals-of-deno/introduction/whats-next.md)
- [2.0 Cover page](https://choubey.gitbook.io/internals-of-deno/architecture/chapter-cover-page.md)
- [2.1 Architecture](https://choubey.gitbook.io/internals-of-deno/architecture/architecture.md)
- [2.2 Overall architecture](https://choubey.gitbook.io/internals-of-deno/architecture/overall-architecture.md)
- [2.3 Programming Languages](https://choubey.gitbook.io/internals-of-deno/architecture/2.3-programming-languages.md)
- [2.4 Deno components](https://choubey.gitbook.io/internals-of-deno/architecture/core.md)
- [2.5 OPs](https://choubey.gitbook.io/internals-of-deno/architecture/ops.md)
- [2.6 TSC/SWC](https://choubey.gitbook.io/internals-of-deno/architecture/tsc.md)
- [2.7 Rusty\_v8](https://choubey.gitbook.io/internals-of-deno/architecture/rusty_v8.md)
- [2.8 Tokio](https://choubey.gitbook.io/internals-of-deno/architecture/tokio.md)
- [2.9 V8](https://choubey.gitbook.io/internals-of-deno/architecture/v8.md)
- [2.10 What's next](https://choubey.gitbook.io/internals-of-deno/architecture/2.7-whats-next.md)
- [3.0 Cover page](https://choubey.gitbook.io/internals-of-deno/threading-model/threading-model.md)
- [3.1 Threading model](https://choubey.gitbook.io/internals-of-deno/threading-model/3.1-threading-model.md)
- [3.2 Default threading model](https://choubey.gitbook.io/internals-of-deno/threading-model/default-threads.md)
- [3.3 Asynchronous green threads](https://choubey.gitbook.io/internals-of-deno/threading-model/tokio-threads.md)
- [3.4 What's next](https://choubey.gitbook.io/internals-of-deno/threading-model/3.4-whats-next.md)
- [4.0 Cover page](https://choubey.gitbook.io/internals-of-deno/bridge/chapter-cover-page.md)
- [4.1 The bridge](https://choubey.gitbook.io/internals-of-deno/bridge/4.1-the-bridge.md)
- [4.2 Print](https://choubey.gitbook.io/internals-of-deno/bridge/4.2-print.md)
- [4.3 Encode and decode](https://choubey.gitbook.io/internals-of-deno/bridge/4.4-encode-and-decode.md)
- [4.4 What's next](https://choubey.gitbook.io/internals-of-deno/bridge/4.6-whats-next.md)
- [5.0 Cover page](https://choubey.gitbook.io/internals-of-deno/foundations/chapter-cover-page.md)
- [5.1 Hello world program](https://choubey.gitbook.io/internals-of-deno/foundations/hello-world.md)
- [5.2 Basic hello world](https://choubey.gitbook.io/internals-of-deno/foundations/basic-hello-world.md)
- [5.3 Main program of Deno](https://choubey.gitbook.io/internals-of-deno/foundations/main-program.md)
- [5.4 Module Specifier](https://choubey.gitbook.io/internals-of-deno/foundations/resolve_url_or_path.md)
- [5.5 CLI Factory](https://choubey.gitbook.io/internals-of-deno/foundations/program-state.md)
- [5.6 Permissions](https://choubey.gitbook.io/internals-of-deno/foundations/permissions.md)
- [5.7 Main Worker](https://choubey.gitbook.io/internals-of-deno/foundations/mainworker.md)
- [5.8 JS Runtime](https://choubey.gitbook.io/internals-of-deno/foundations/jsruntime.md)
- [5.9 Run main module](https://choubey.gitbook.io/internals-of-deno/foundations/execute_module.md)
- [5.10 Load module](https://choubey.gitbook.io/internals-of-deno/foundations/load-module.md)
- [5.11 Recursive module loading](https://choubey.gitbook.io/internals-of-deno/foundations/4.11-recursive-module-loading-and-module-graphs.md)
- [5.12 Module graphs](https://choubey.gitbook.io/internals-of-deno/foundations/4.12-module-graphs.md)
- [5.13 File fetching](https://choubey.gitbook.io/internals-of-deno/foundations/4.13-file-fetcher.md)
- [5.14 Transpile](https://choubey.gitbook.io/internals-of-deno/foundations/4.13-check-and-or-transpilation.md)
- [5.15 Register / compile module](https://choubey.gitbook.io/internals-of-deno/foundations/register-and-instantation.md)
- [5.16 Instantiate module](https://choubey.gitbook.io/internals-of-deno/foundations/instantiate-module.md)
- [5.17 Evaluate module](https://choubey.gitbook.io/internals-of-deno/foundations/evaluate-module.md)
- [5.18 What's next](https://choubey.gitbook.io/internals-of-deno/foundations/4.18-whats-next.md)
- [6.0 Cover page](https://choubey.gitbook.io/internals-of-deno/import-and-ops/chapter-cover-page.md)
- [6.1 Imports and ops](https://choubey.gitbook.io/internals-of-deno/import-and-ops/console-print-with-delay.md)
- [6.2 Hello world program v2](https://choubey.gitbook.io/internals-of-deno/import-and-ops/basic-console-print-with-delay.md)
- [6.3 Module graph with imports](https://choubey.gitbook.io/internals-of-deno/import-and-ops/building-module-graph.md)
- [6.4 Transpile](https://choubey.gitbook.io/internals-of-deno/import-and-ops/5.4-transpile.md)
- [6.5 Registration and instantiation](https://choubey.gitbook.io/internals-of-deno/import-and-ops/registration-and-instantiation.md)
- [6.6 Registration of ops](https://choubey.gitbook.io/internals-of-deno/import-and-ops/5.6-registration-of-ops.md)
- [6.7 Evaluate module](https://choubey.gitbook.io/internals-of-deno/import-and-ops/evaluate-module.md)
- [6.8 Sync OPs](https://choubey.gitbook.io/internals-of-deno/import-and-ops/5.8-sync-op.md)
- [6.9 Debug logs](https://choubey.gitbook.io/internals-of-deno/import-and-ops/6.9-debug-logs.md)
- [6.10 What's next](https://choubey.gitbook.io/internals-of-deno/import-and-ops/5.11-whats-next.md)
- [7.0 Cover page](https://choubey.gitbook.io/internals-of-deno/chapter-7-local-and-session-storage/7.0-cover-page.md)
- [7.1 Introduction](https://choubey.gitbook.io/internals-of-deno/chapter-7-local-and-session-storage/7.1-introduction.md)
- [7.2 Local storage](https://choubey.gitbook.io/internals-of-deno/chapter-7-local-and-session-storage/7.2-local-storage.md)
- [7.3 Session storage](https://choubey.gitbook.io/internals-of-deno/chapter-7-local-and-session-storage/7.3-session-storage.md)
- [7.4 What's next](https://choubey.gitbook.io/internals-of-deno/chapter-7-local-and-session-storage/7.4-whats-next.md)
- [Afterword](https://choubey.gitbook.io/internals-of-deno/afterword/afterword.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information, you can query the documentation dynamically by asking a question.
Perform an HTTP GET request on a page URL with the `ask` query parameter:
```
GET https://choubey.gitbook.io/internals-of-deno/master.md?ask=<question>
```
The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.
Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
