wasm-git icon indicating copy to clipboard operation
wasm-git copied to clipboard

GIT for nodejs and the browser using https://libgit2.org compiled to WebAssembly with https://emscripten.org

Results 24 wasm-git issues
Sort by recently updated
recently updated
newest added

Some commands such as `revparse`, `branch` are not available. Will they get supported in the future? Thanks! For example: ```node > lg.callMain(["branch"]) Command not found: branch undefined ```

I know you can make `npm install wasm-git` in a random directory and copy the wasm file, but I think it could be easier if you published them in /releases.

`wasm-git` always commits with name Me and e-mail when using inside web-worker. I tried creating `/home/web_user/.gitconfig` ```js FS.writeFile('/home/web_user/.gitconfig', '[user]\n' + `name = ${event.data.name}\n` + `email = ${event.data.email}`); ``` and creating...

Hi – cool project! I was just trying out your node example in an Electron project, but get the following error: ``` /Users/mstade/dev/cjm/journeyman/node_modules/wasm-git/lg2.js:1 exception thrown: Error: The V8 platform used...

Hi, I'd be really interested in seeing a working example of your lib in a website, is the source of https://wasm-git.petersalomonsen.com/ available for example? I couldn't make the example provided...

It seems there's only an in-memory filesystem included with wasm-git (totally makes sense) but if I'm not completely mistaken it also looks like this can quite easily be replaced simply...

https://github.com/petersalomonsen/wasm-git/issues/53 reproduced here: https://github.com/petersalomonsen/wasm-git/pull/54/files#diff-865d0671bf01f79dadb619dae1e7a8e72d4aa828b5393f4f87a9c99b79be07cf

Here's something that seems to be a bug. I'm running the following webworker code on chrome. The `index.html` file is the same as in the examples directory, as is `githttpserver.js`....

This project is really cool. Thanks for all your work! I have followed some related issues (https://github.com/petersalomonsen/wasm-git/issues/80) to capture the output, which working fine in some simple cases. But it...

Hello, @petersalomonsen, First of all, I’m really impressed by the wasm-git library, good job! I recently encountered an issue while working with the library, and I’m not sure how to...