Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

db64

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

db64 - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

2

package.json
{
"name": "db64",
"version": "0.5.0",
"version": "0.5.1",
"description": "A Practical IndexedDB API",

@@ -5,0 +5,0 @@ "main": "db64.js",

@@ -20,13 +20,13 @@ # db64

try {
// First create a database with stores.
// First create a database with stores
await db64.create('Games', 'Super Nintendo', 'Gameboy')
// Assing a variable for modifying a store.
// Assing a variable for modifying a store
const snes = db64.use('Games', 'Super Nintendo')
// Set multiple entries
// Set multiple entries into Super Nintendo
await snes.setEntries({ adventure: 'Mario Wrold', rpg: 'Zelda', fighting: 'Street Fighter II' })
// Get multiple entries
await snes.getEntries(['adventure', 'fighting'])
// Get multiple entries from Super Nintendo
await snes.getEntries(['adventure', 'fighting']) // { adventure: 'Mario Wrold', fighting: 'Street Fighter II' }
...

@@ -33,0 +33,0 @@ ```

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc