Socket
Socket
Sign inDemoInstall

objectdb

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    objectdb

An object


Version published
Maintainers
1
Install size
3.25 kB
Created

Readme

Source

objectDB Build Status

objectDB is an open-source in memory javascript database inspired by vanillajs. Designed to help you put stuff in an object.

Features

  • Extremely Light weight!
  • Extremely fast queries
  • Extremely robust cross browser support
  • Extremely easy to learn
  • Extremely open source
  • Extremely compatible with your own code
  • Extremely sexy

Install

npm install --save objectdb

Test

npm test

If the test fails. You need to stop and walk away from the computer slowly!

How do I use it?

I cant believe you have to ask, ok here.

let objectDb = require('objectdb');

objectDb.name = 'smart ass';
console.log(objectDb.name);

If I refresh the page I loose everything

Well no shit! Its an object!

To put it in the browsers storage

let objectDb = require('objectdb');
objectDb.name = 'smart ass';

// Set
localStorage.setItem("data", JSON.stringify(objectDb));

// Get
let data = JSON.parse(localStorage.getItem("data"));
console.log(data);

Wait a sec! Its not a database!

Oh yes it is smart ass!

Definition: "a structured set of data held in a computer, especially one that is accessible in various ways."

Roadmap

No

Contributing

Why?

Steal it! Take it all for your own.

Keywords

FAQs

Last updated on 21 Oct 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc