bmeck
No user record in our sample, but bmeck has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but bmeck has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
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 on npm do provide lockfiles but those…
People are always asking for code signing, really curious to see how they react to this one.
or you could just do `import('a'); import('b');` to load `a` and `b` in parallel
incorrect. `await` is a reserved word only in async contexts, the UI thread event loop still runs while `await`ing.
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 random Script like the examples you gave.
`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 that your module will be suspended while…
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...
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 code as the first proposal;…
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 node but it is outside of JS spec…
https://github.com/nodejs/node-eps/blob/master/002-es6-modul...
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 current pace (next year).
Vote was at: https://github.com/nodejs/node/issues/5648
const is not about immutability in JS.
const is not about immutability in JS.
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(queue); return queue; } It could be…
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 `npm` write past the 260 [wtf?] char…
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 `npm` write to files past the limit by…