These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
What things you need to install the software and how to install them
node
npm install ispiredb.js --save
or
download ispireDb.bundle.js from the dist folder
import IspireDb from "ispiredb.js/dist/ispiredb";
let article = new IspireDb();
article.setup('todo',1, '++id','title', 'description', 'complete', 'time');
article.create({ title: 'sweet', description:'just practicing',complete: 'no',time: new Date() });
article.find(1, data => { console.info(data)}); //=> find object
article.all() //=> Array [articles]
- Typescript
- javascript
- Webpack
- IndexDB
- Dexie
We use Npm for versioning. For the versions available, see the tags on this repository.
- Isaac Browne - Initial work - Ispirett
This project is licensed under the MIT License - see the LICENSE.md file for details
- Hat tip to typescript indexDb Dexie