giraffekey

Results 24 issues of giraffekey

Wondering what needs to get done, I'd be willing to contribute.

There is a next_state function in util whose purpose is to check for updates in the data getting input in the put function and generate the state key in the...

The current implementation of get does not support chained get calls such as `gun.get("key").get("prop").put("val")`. The GunGet struct should have its own get function that returns a new Self. Not sure...

Implement what's seen here: https://gun.eco/docs/API#-a-name-set-a-gun-set-data-callback- --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/95273599-set-and-unset?utm_campaign=plugin&utm_content=tracker%2F189234641&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F189234641&utm_medium=issues&utm_source=github).

The JS implementation of GUN has a map function. The Rust way of doing things is iterators, so we should implement full-on iterator support instead of limiting ourselves to map....

The SEA API and User API which is built off SEA are arguably the most important features of GUN and the minimum we need for an MVP. The first step...

I'm ready to give WASM compilation a try now that the plugin system is set up >:) Will require creating the websockets-wasm plugin and creating WASM-friendly alternatives to some of...

The mix_ham function (I called it that as a joke, can be changed to ham_mix) isn't very Rust-like and is something I wrote just by directly translating the JavaScript logic...

The find operation has been rewritten although I haven't tested if it works yet. Comparing the old version of find to the new one should provide some insight on what...

Some sort of "onUpdate" handler would be helpful: ```js liveServer.start({ ... onUpdate() { console.log("Updating...") // some more code } }) ```