Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 785 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 785 Bytes

Angular 2 IndexedDB

IndexedDB in the new Angular 2 applications using TypeScript.

Sample app

The sample application implements a simple todos list using an Entity model to work asyncronously: IndexedDBEntity Plus:

  • the service requires only the basic methods: other methods that don't affect the db can be easily implemented and customized on the entity;
  • higher speed of execution.

Running the sample app

What you need to run the sample app:

  • this repository
  • Node and npm already installed.

In the command line, go to the directory that contains index.html:

npm install

npm start

Related projects

Ng2IdxDbService @fhdk