GithubHelp home page GithubHelp logo

edysegura / html5-indexeddb Goto Github PK

View Code? Open in Web Editor NEW
1.0 0.0 0.0 5.35 MB

Home Page: https://edysegura.github.io/html5-IndexedDB

HTML 42.13% CSS 15.21% JavaScript 27.43% SCSS 15.23%
html5 indexeddb nullstack

html5-indexeddb's Introduction

HTML5 indexedDB API

A simple CRUD app using HTML5 indexedDB API

How to run this Project

Install the dependencies:

npm install

Copy the environment sample to a .env file

NULLSTACK_PROJECT_NAME="[dev] HTML5 IndexedDB"
NULLSTACK_PROJECT_DOMAIN="localhost"
NULLSTACK_PROJECT_COLOR="#D22365"
NULLSTACK_SERVER_PORT="5000"

Run the app in development mode:

npm start

Open http://localhost:5000 to view it in the browser.

Learn more about Nullstack

Read the documentation

References

html5-indexeddb's People

Contributors

dependabot[bot] avatar edysegura avatar

Stargazers

 avatar

html5-indexeddb's Issues

Add this example

import Dexie from "https://cdn.jsdelivr.net/npm/[email protected]/dist/dexie.mjs";

let db;

export default class TodoService {
  constructor() {
    this.initializeDB();
  }

  initializeDB() {
    db = new Dexie("todoDB");

    db.version(2).stores({
      tasks: "++id,userId,title,completed",
    });

    db.on("populate", async () => {
      const response = await fetch(
        "https://jsonplaceholder.typicode.com/todos"
      );

      const jsonData = await response.json();
      await db.tasks.bulkPut(jsonData);
    });

    db.open();

    db.tasks
      .where("userId")
      .equals(10)
      .filter(item => !item.completed)
      .each((item) => console.log(item));
  }
}

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.