17 ms·
Adobe donated $5000 to JS-Git
- caniszczyk 13y agoGood on Adobe... but what does this get them? I spent a lot of time working on JGit: http://eclipse.org/jgit/ http://eclipse.org/jgit/ This is going to take folks a long time to do in pure JS... before even work has to be done to tweak performance... the great thing about JGit is that it's under EDL (BSD) so JS-Git should be able to steal some ideas
- asb 13y agoYes, this is the second fundraiser for JSGIT development (the first was http://www.kickstarter.com/projects/creationix/js-git http://www.kickstarter.com/projects/creationix/js-git). See also http://www.kickstarter.com/projects/creationix/js-git/posts/518104 http://www.kickstarter.com/projects/creationix/js-git/posts/... and its comments
- bsimpson 13y agoThey're betting the dev tools farm on Brackets, an open-source editor written in JS. To enable it to run on ChromeOS, FirefoxOS, or iOS, they need to have a better cloud filesystem story. Since git is the de facto format for sharing code across machines, they want to integrate git into Brackets. Then, you'd be able to write code on a device that doesn't have a traditional filesystem, locally caching changed resources and offloading the data persistence aspect to a service like BitBucket or GitHub.
- ccverg 13y agohttps://plus.google.com/u/1/115365194873502050036/posts/XXT7xXk8hU2 https://plus.google.com/u/1/115365194873502050036/posts/XXT7...
- caniszczyk 13y agoAh, I guess they are taking another approach than just using JGit... Eclipse Orion (similar to Brackets) services Git support via a service that is powered by JGit (and in theory, can be swapped out in the future): http://eclipse.org/orion/ http://eclipse.org/orion/
- taproot 13y agobrackets.io It shows a lot of promise. Coming from someone who basically despises adobe this platform has given them an ounce of respect from me. Very interesting ideas, a web 2.0 take on ides in general and aims at being a go to for all those engineers turned web developer. Im not sure if it was their idea or they copied it but cross file editing of css styles inline is especially cool. As is the fact that you can hack on the source during runtime.
- taproot 13y agoJust to nitpick but brackets is open source too so its more like borrowing.
- skwirl 13y agoIs this a marketing post?
- fotcorn 13y agoI think using emscripten + some customization of the code is much more efficient than doing this port AND you don't have problems with incompatibilities. But why do you want to run git in your web browser in the first place?
- fosap 13y agoI think this is what emscripten is for: You have some _great_ code and want to port it to the browser platform. But I'm afraid Git relies heavily on the "Posix runtime" that is not supported by emscripten, since emscripten does not try to emulate an os.
- creationix 13y agoCorrect. Also the amount of code generated by emscripten is too much for me. I want js-git to be a light-weight dependency.