Vaughan Rouesnel
Vaughan Rouesnel
Something like this:  On a MBP 16 retina, there is so much deadspace in the tool window. I would prefer this over...
Here is the Node.js debugger with dockable tool window tabs. For me this is ideal: https://user-images.githubusercontent.com/281413/132848224-75493e03-7a63-4823-80c1-251002285906.mov
Any update on this? I'm seeing something like this, but I can see the red squares in the gutter all the way to the actual issue. ``` xxx/src/config.test.ava.ts test [15...
I use a lot of `[err, val]` in my TS code when I need to explicitly check the error because I find `try catch` makes code look messy. But by...
`napi-rs` [recently introduced](https://github.com/napi-rs/napi-rs/commit/2467b7139b1e96a315651254046bb2e1788be6c7) the [`#[napi]`](https://github.com/napi-rs/napi-rs#define-javascript-functions) macro that automatically generates Rust bindings for JS. I think this is the best approach for interop. If BS could interop with C-style libs, then...
It was a fresh Ubuntu 14.14 on amazon ec2. On Fri, 8 Jan 2016 at 7:02 PM, Julien DAUPHANT [email protected] wrote: > What is your distribution ? ( Debian, Ubuntu...
@streamich BTW master version is 2.5.10. Latest published is 2.7.0.
Also, could you publish this version? Or add a post-install build step so that I can install from git.
When using globby when I run: ``` import glob from 'globby' vol.writeFileSync('/app/foo.json', 'foo') glob.sync('/app') vol.symlinkSync('/app', '/app/foo') glob.sync('/app') // This is empty array. ``` The second glob returns an empty array....
_patcher.js_ ```js import {Volume} from 'memfs' import {patchFs} from 'fs-monkey' import {ufs} from 'unionfs' import * as originalFs from 'fs' let vol function start() { vol = new Volume() ufs.use(vol).use(originalFs)...