is browser supported?
See original GitHub issueHi, I just tried to build a browser app with the following code and I have an issue concerning blake2b-wasm
wich uses node fs
module.
var hyperdb = require('hyperdb')
var ram = require('random-access-memory')
var db = hyperdb(function (filename) {
return ram()
})
db.put('/hello', 'world', function (err) {
if (err) throw err
db.get('/hello', function (err, nodes) {
if (err) throw err
console.log('/hello --> ' + nodes[0].value)
})
})
Is hyperdb working on browser?
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Can I use... Support tables for HTML5, CSS3, etc
"Can I use" provides up-to-date browser support tables for support of front-end web technologies on desktop and mobile web browsers.
Read more >Sign in with a supported browser - Android - Google Support
Step 1. Use a supported browser. These and other browsers support JavaScript: Chrome; Safari; Firefox; Opera; Edge. Step 2 ...
Read more >Supported browsers and platforms | nidirect
Recommended browsers · Google Chrome (latest version) — Windows, Mac OS X, iOS, Android · Apple Safari (latest version) — Mac OS X,...
Read more >Supported browsers and platforms | Authentication
Compatibility. The Sign In With Google button works with the following browser and platform combinations: Browser / Platform, Android ...
Read more >What is Browser Compatibility? (With Best Practices)
Browser compatibility, often known as cross-browser compatibility, refers to whether or not a website or web application functions as ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Just mentioning this here in case anyone else is looking for this and has trouble finding it: In #96
random-access-idb
is mentioned, in case persistent storage in the browser is needed. Seems to work quite well.How are you running this? Have you tried browserify?
When I open the terminal I see
/hello --> world
.