Yoshiya Hinosawa

Results 644 comments of Yoshiya Hinosawa

`ConsoleHandler` doesn't implement `setup` and `destroy`, instead inherits them from `BaseHandler`. I don't think it makes sense to remove them from BaseHandler. (All handlers are supposed to implement `setup` and...

I don't understand the motivation. It doesn't seem solving any problem. > the same can be achieved with plain js object I think this assumption is not strictly correct. The...

@javihernant Interesting finding! Can you create an issue in denoland/deno with a minimal repro example?

hmm looks like Deno ignoring `\r` in string literal is not a bug. Maybe we should escape `\r` when serializing it

> I propose the integration of Secure Curves into the Web Cryptography API Do you propose this feature as addition to builtin Web Crypto API? Or do you suggest this...

> To me, autodiscovering files - even a .env - feels like an antipattern in Deno. Can you elaborate? Autodiscovery of `.env` is, in my view, the main point of...

> Deno doesn't autoload import maps for example. Deno autoloads `deno.json` since [v1.18](https://deno.com/blog/v1.18#auto-discovery-of-the-config-file) and the import map embedded in it is auto-applied. I generally agree that Deno prefers explicit over...

@Leokuma > Or possibly use `deno.json` when available: > > ```json > { > "env": ".env" > } > ``` Sounds interesting idea to me, worth pursuing in Deno CLI...

Also I haven't seen people having migrated from `std/dotenv` to `--env` yet. I think this suggestion only makes sense when the majority of existing users of `std/dotenv/load` migrated to `--env`...

I personally think if we deprecate `load`, we should deprecate the entire `dotenv`. I've never seen the usage of `dotenv` other than `load`/`load.ts`