Results 477 comments of David Humphrey

This would be great, yes. Being able to install and run `hurl` via `npm` (e.g., having it get put in `node_modules/.bin` and being able to use it via `npm` scripts,...

I filed #544 to deal with the `npm` install case, so I don't hijack this issue.

Thanks for working on this, it's appreciated. I tested and on my M1 I still have some issues: ```sh docker run --rm orangeopensource/hurl:latest --version WARNING: The requested image's platform (linux/amd64)...

@pbouianov has started an implementation of this over at https://github.com/pbouianov/filer/blob/rsync/src/rsync.js. Some things to do with this code: - Get rid of RSync, and just return the rsync function from require...

This remains a dream of mine. Today I found this paper: http://www.cs.yale.edu/homes/zhai-ennan/fast18-final70.pdf And the full implementations of various algorithms from the paper in JS: https://github.com/WebDeltaSync/WebRsync, https://github.com/WebDeltaSync/WebR2sync_plus (see their other repos...

Summary blog post about the work: https://blog.acolyer.org/2018/03/02/towards-web-based-delta-synchronization-for-cloud-storage-systems/

https://github.com/zbackup/zbackup from #348. Looks like it's dead, but interesting.

http://ori.scs.stanford.edu/# from #343. Also looks cool. Also looks dead :(

https://github.com/syncthing/syncthing from #307. Looks cool, still active.

Looked at node's test approach, and one thing they have is a `tmpDir.js` module that manages and cleans up a temporary dir for tests to happen within, see https://github.com/nodejs/node/blob/master/test/common/tmpdir.js. NOTE:...