Design Meeting 2021-08-05 #11768
Replies: 1 comment 1 reply
-
I agree with this, regarding the I have a notion that async iterators should be preferred for simple request event streams, while a callback-based API becomes justified precisely at the level of abstraction where something like middleware is introduced. If you agree then Deno and std should limit their recommended options accordingly; avoid wrappers like |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
deno_graphdeno_graphor not, as those consuming it would want to have support for import maps. The functionality is abstracted out as theResolvertrait, but there is no implementation.deno_graphinto CLI occurs.deno_doc.CacheandCacheStorageAPIs are un-needed or unwanted. They were implemented as part of service workers and are critical to service workers, but they aren't isolated to service workers in the web platform.DENO_DIRis unbounded in size and we need to do something eventually there.CacheStorageorIndexedDBit starts to become a problem.std/httpandstd/ws(https://github.com/denoland/deno_std/discussions/1034)std/httpas it exists.std/httpapplication to work with the newstdabstraction. If it is change a couple lines, great, if it is more complicated, what value does a new abstraction bring?Denonamespace and only with an explicit flag.Denonamespace actually seeing it, and then trying to do something, but not having the right permissions would break.deno: truein the worker options, becausetype: "module"already has to be passed in Deno, and the risk of breaking changes for little to no value for the user isn't worth the risk, but we would like to correct the mistake for Deno 2.0.--evalflag (deno repl --eval flag #11317)Beta Was this translation helpful? Give feedback.
All reactions