Code Monkey home page Code Monkey logo

objectdb's Introduction

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?

Copyright

Steal it! Take it all for your own.

objectdb's People

Contributors

brianvoe avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.