Tim Caswell

Results 341 comments of Tim Caswell

I'd be willing to add this to lit, we just need to discuss and design how it should work. Python's PIP was mentioned, another relevant prior art is node-gyp and...

Lit will work as well as you don't mind pre-publishing all binaries for platforms you support as well as being having the module installed to `$CWD/deps/$NAME`.

@halfnelson would you like to send a PR to see if your changes can get merged here?

I initially used raw TCP since I just need a fast socket to talk commands over, but it was blocked by some network proxies. wss:// is almost universally supported in...

Plus implementing client and server for websockets is fairly [trivial](https://github.com/luvit/lit/blob/master/deps/websocket-codec.lua). Also now websites can talk to the lit server since websockets are cross-domain by default unlike http.

Nice work! I hope to be able to review this later.

>A way of specifying a commit, or a branch, or even a tag is mandatory. I although have been very conflicted over this and over how I will be implementing...

> Internally implement Git protocol over HTTPS (smart HTTPS) I've done this before in JavaScript, it's not too terrible. The hardest part is reading the packfile which I seem to...

I like the `assert` style error handling because it gives the caller the option to ignore errors without having to use error catching. Generally I only like to throw hard...

I'd be fine with PRs making it more consistent. We can bump major versions if it's a breaking change.