Gareth Ari Aye
Gareth Ari Aye
Not sure why but when trying to build v1.7.7 to publish to npm, I found that babel wasn't outputting stuff in `build/` although it's not complaining either...
Right now using the WebDAV bits looks like ``` var dav = require('dav'); var client = new dav.Client( new dav.transport.Basic( new dav.Credentials({ username: 'xxx', password: 'xxx' }) ), { baseUrl:...
Fixes #49.
The dav public api is documented in the README and also on the public parts of the codebase. I usually write the docs to both places, but it would be...
Currently we use nodejs polyfills for `DOMParser` and `XMLHttpRequest` to run and test on nodejs. Before I was doing something like ``` js var Native; if (typeof window !== 'undefined')...
Right now all of our testing happens in nodejs and we assume that browserify will transform our nodejs stuff to correctly functioning browser stuff. We should have [at the very...
Right now, when you run dav in the browser, the debug logs get written through `localStorage` which is perf-unacceptable for firefox os. Perhaps we should hack `debug` to buffer things...
Here is my `Tupfile`. ``` : package.json |> npm install |> node_modules ``` And my `package.json` ``` { "name": "some-package", "version": "0.0.1", "author": "Gareth Aye [:gaye] ", "devDependencies": { "chai":...