File tree Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,17 @@ The edge runtime can be divided into two runtimes with different purposes.
32
32
- Limits are required to be set such as: Memory and Timeouts.
33
33
- Has access to environment variables explictly allowed by the main runtime.
34
34
35
+ ### Edge Runtime in Deep
36
+
37
+ #### Conceptual
38
+
39
+ - [ EdgeRuntime Base] ( /crates/base/README.md ) : Overalls about how EdgeRuntime is based on Deno.
40
+
41
+ #### Extension Modules
42
+
43
+ - [ AI] ( /ext/ai/README.md ) : Implements AI related features.
44
+ - [ NodeJs] ( /ext/node/README.md ) & [ NodeJs Polyfills] ( /ext/node/polyfills/README.md ) : Implements the NodeJs compatibility layer.
45
+
35
46
## Developers
36
47
37
48
To learn how to build / test Edge Runtime, visit [ DEVELOPERS.md] ( DEVELOPERS.md )
Original file line number Diff line number Diff line change 1
- # deno_node
1
+ # Supabase Node module
2
+
3
+ This crate is part of the Supabase Edge Runtime stack and implements NodeJs
4
+ related features.
5
+
6
+ To see all compatible features, please check the
7
+ [ NodeJs Polyfills] ( /ext/node/polyfills/README.md ) section.
8
+
9
+ ## deno_node
2
10
3
11
` require ` and other node related functionality for Deno.
Original file line number Diff line number Diff line change 1
- # Deno Node.js compatibility
1
+ # Supabase Node.js compatibility module
2
2
3
- This module is meant to have a compatibility layer for the
3
+ This crate is part of the Supabase Edge Runtime stack and implements a
4
+ compatibility layer for the
4
5
[ Node.js standard library] ( https://nodejs.org/docs/latest/api/ ) .
5
6
6
7
** Warning** : Any function of this module should not be referred anywhere in the
@@ -59,7 +60,7 @@ Deno standard library as it's a compatibility module.
59
60
- [x] worker_threads
60
61
- [ ] zlib
61
62
62
- * [x] node globals _ partly_
63
+ - [x] node globals _ partly_
63
64
64
65
### Deprecated
65
66
You can’t perform that action at this time.
0 commit comments