Viewing profile — Soremwar
Soremwar
HN member- Joined
- Sun, Sep 13, 2020, 4:40 PM UTC
- HN karma
- 54
- Public activity
- 31 items
- HN profile
- View on Hacker News ↗
About Soremwar
No profile information was provided.
Recent public activity
-
comment
Comment #31110142
That new bench reporter is really something to look at
-
comment
Comment #30373515
Tracking where open resources like timers were invoked is something that is quite literally a game changer People sleep on how good the Deno test runner is, but I can't for the lif…
-
comment
Comment #29883572
"Immutable" in the sense that packages can't be taken down or modified by authors If you wanna take it a step further, you can always opt in to that lock file with various degrees …
-
comment
Comment #29877331
Hence why developers always recommend to use immutable sources when importing modules
-
comment
Comment #29547722
They don't though. They transpile it behind the scenes
-
comment
Comment #29348037
They are different, currently no Deno registries have dynamic version resolution (no greater than operator). Once you have locked in on a version you are in it for good unless you …
-
comment
Comment #29260912
Reimplement in the way that they change certain rules to accommodate a more "modern JS" feel And they absolutely use TS for the std library, just not in the runtime itself
-
comment
Comment #29142218
Not that simple of a comparison since "data centers" mean a different thing in both cases
-
comment
Comment #28585700
You don't need to test a feature that they don't have
-
comment
Comment #27131407
Wrong, 1.0 released exactly one year ago, before there was mostly destabilization of the runtime and not really development features
-
comment
Comment #27131385
We may have WebGPU powered desktop applications in the near future though. Let's see how things play out, as you daid
-
comment
Comment #27131354
There have been multiple test runners built on top of Deno's vanilla testing (through the JSON output feature), those may fit your use case better The current multi threaded and mo…
-
comment
Comment #27131315
IMO this is a terrible idea. If I have learned anything from working long time with NPM is you can't trust a single command with updating your dependencies and you can't trust deve…
-
comment
Comment #26811934
Only if you update dependencies, a fresh install would not have such integrity checks, so it's just as vulnerable as Deno hosts to such attacks
-
comment
Comment #26811911
No they can't, Deno is JavaScript compliant
-
comment
Comment #26802602
For frontend TypeScript I assume you mean TypeScript that doesn't use JS modules but extensionless modules, the TypeScript folks sadly have decided to not bring compatibility here …
-
comment
Comment #26800381
You do something like this export * as Oak from "https://deno.land/x/oak/mod.ts"; export * as Postgres from "https://deno.land/x/postgres/mod.ts"; Then you do this: import { Oak, P…
-
comment
Comment #26800359
Yeah, libraries can't use import maps because import maps are not extensible
-
comment
Comment #26799780
You don't ever lose productivity or knowledge on a tool when a new one comes out though. A new thing that people like becomes popular and people start using it, old one becomes les…
-
comment
Comment #26623033
They had to remove it from the Deno build process so Deno internals didn't need a compiler. However TypeScript support remains untouched and receives constant updates
-
comment
Comment #26622950
This. I cannot stress how important is this for modern app development. Just like Deno doesn't trust any script that is passed to it, no user should trust an app just cause it's in…
-
comment
Comment #26324881
What link?
-
comment
Comment #26324851
The thing is that without read/write or net permissions, a malitious script that turns your computer into a mining rig will throw because it can't connect to any server or use your…
-
comment
Comment #26324503
Already fixed
-
comment
Comment #25791431
No matter if you are interested in Deno or not, seeing this amount of features in a year alone gives you an idea of what's to come for Deno in the future