summaryrefslogtreecommitdiff
path: root/docs/embedding_deno.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/embedding_deno.md')
-rw-r--r--docs/embedding_deno.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/embedding_deno.md b/docs/embedding_deno.md
new file mode 100644
index 000000000..aa8cd58b1
--- /dev/null
+++ b/docs/embedding_deno.md
@@ -0,0 +1,11 @@
+# Embedding Deno
+
+Deno consists of multiple parts, one of which is `deno_core`. This is a rust
+crate that can be used to embed a JavaScript runtime into your rust application.
+Deno is built on top of `deno_core`.
+
+The Deno crate is hosted on [crates.io](https://crates.io/crates/deno_core).
+
+You can view the API on [docs.rs](https://docs.rs/deno_core).
+
+<!-- TODO(lucacasonato): better docs -->