Viewing profile — bmeck
bmeck
HN member- Joined
- Mon, Jun 04, 2012, 8:03 PM UTC
- HN karma
- 27
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About bmeck
No profile information was provided.
Recent public activity
-
comment
Comment #35632004
SBOM doesn't make sense at this level usually since the things being published lists constraints when installed locally and not locked/pinned versions. Some executables distributed…
-
comment
Comment #35630354
People are always asking for code signing, really curious to see how they react to this one.
-
comment
Comment #12500927
or you could just do `import('a'); import('b');` to load `a` and `b` in parallel
-
comment
Comment #12499417
incorrect. `await` is a reserved word only in async contexts, the UI thread event loop still runs while `await`ing.
-
comment
Comment #12499225
top level await is only possible in grammar w/ `await` as a reserved word. This is limited to Modules (type=module) and async functions. You can't put it in your click handler or r…
-
comment
Comment #12497466
`await` allows the event loop/job queue to run while waiting. However, while using `import` declarations , your module will not run until all imports have completed; this means tha…
-
comment
Comment #11578081
We looked at several alternative extensions and it was the least egregious of them: https://github.com/nodejs/node-eps/blob/master/002-es6-modul...
-
comment
Comment #11577632
There is a pretty epic thread that I suggest you just read the tail end of https://github.com/nodejs/node-eps/pull/3#issuecomment-21476... . Basically we tried detection via source…
-
comment
Comment #11576435
ES2015 did not include a loader specification, only a module specification. https://github.com/nodejs/node-eps/blob/master/002-es6-modul... is the interop that will be present for …
-
comment
Comment #11576411
https://github.com/nodejs/node-eps/blob/master/002-es6-modul...
-
comment
Comment #11576404
https://github.com/nodejs/node-eps/blob/master/002-es6-modul... was merged today; v8 C++ API for node to truly support it has not been implemented yet, should be in next LTS at cur…
-
comment
Comment #11576400
Vote was at: https://github.com/nodejs/node/issues/5648
-
comment
Comment #9646329
const is not about immutability in JS.
-
comment
Comment #9646324
const is not about immutability in JS.
-
comment
Comment #9638130
const can be used to denote that a reference to the variable is being passed around and should not change for the lifetime of a scope. function f() { const queue = []; consumer(que…
-
comment
Comment #9273760
Once again, these limitations are not with Windows itself (see all the C++ Unicode file functions / file longpaths). In general Node supports long paths just fine (you can watch `n…
-
comment
Comment #9273711
Node uses the Unicode functions so no need, but lots of tools in windows break (cmd.exe notably) so things like child processes don't work on long filepaths. You can actually watch…