Skip to content

nolanlawson/pouchdb-ionic-2-typescript-demo

Repository files navigation

Demo PouchDB + Ionic 2 RC + TypeScript 2

A demo app to show how to use PouchDB with Ionic 2 and TypeScript.

The app was created using:

npm install -g ionic
ionic start test --v2 
cd test

Then PouchDB was installed using:

npm install --save pouchdb

The I made modifications to the default Ionic app:

Importing PouchDB:

// src/app/app.component.ts
import PouchDB from 'pouchdb';
console.log("Hey look, I've got PouchDB:", PouchDB);
let db = new PouchDB('database');
console.log("Hey look, I've got a PouchDB database:", db);

Then I started the app:

ionic serve

In your browser console, you should see "Hey look, I've got PouchDB" and "Hey look, I've got a PouchDB database".

About

Demo of PouchDB with Ionic 2 and TypeScript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published