Hacker News new | ask | show | jobs
by nupark2 5378 days ago
I just want to pick one illustrative example, because the other replies cover most of the ground:

What about files? Yeah, there are file APIs. Databases? localStorage is a simple key/value store. There's also WebSQL DB and IndexedDB which will hopefully be resolved in one way or another soon.

In native-land, we've had SQLite for over a decade. If I want "WebSQL DB" today, I simply link sqlite into my project and move on.

Before SQLite, we had bdb. When the next new thing I want to use comes along, I'll simply use it, and I won't have to wait around for standardization, and the for browser makers to wrap it up in a JavaScript API.