All Projects → ibm-watson-data-lab → shopping-list-react-pouchdb

ibm-watson-data-lab / shopping-list-react-pouchdb

Licence: Apache-2.0 license
Shopping List is an Offline First demo Progressive Web App built using React and PouchDB.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to shopping-list-react-pouchdb

shopping-list-preact-pouchdb
Shopping List is an Offline First demo Progressive Web App built using Preact and PouchDB.
Stars: ✭ 18 (-33.33%)
Mutual labels:  pouchdb, offline-first, demo-apps, progressive-web-apps
shopping-list-vuejs-pouchdb
Shopping List is an Offline First demo Progressive Web App built using Vue.js and PouchDB.
Stars: ✭ 81 (+200%)
Mutual labels:  pouchdb, offline-first, demo-apps, progressive-web-apps
grouptabs
Mobile Web App to organize payments in dynamic groups of people.
Stars: ✭ 40 (+48.15%)
Mutual labels:  pouchdb, offline-first
client-side-databases
An implementation of the exact same app in Firestore, AWS Datastore, PouchDB, RxDB and WatermelonDB
Stars: ✭ 787 (+2814.81%)
Mutual labels:  pouchdb, offline-first
drummer
Offline-first drum machine
Stars: ✭ 19 (-29.63%)
Mutual labels:  pouchdb, offline-first
Metadata.js
Library for building offline-first browser-based applications :: платформа автономных веб-приложений
Stars: ✭ 165 (+511.11%)
Mutual labels:  pouchdb, offline-first
Rxdb
🔄 A client side, offline-first, reactive database for JavaScript Applications
Stars: ✭ 16,670 (+61640.74%)
Mutual labels:  pouchdb, offline-first
couch-auth
Powerful authentication for APIs and apps using CouchDB (or Cloudant) with Node >= 14
Stars: ✭ 50 (+85.19%)
Mutual labels:  pouchdb, offline-first
offline-first-app
OfflineFirst demo app with some WebComponents and PouchDB
Stars: ✭ 27 (+0%)
Mutual labels:  pouchdb, offline-first
affilicats
🐈 Progressive Web App demo that showcases flaky network resilience measures (📶 or 🚫📶).
Stars: ✭ 65 (+140.74%)
Mutual labels:  offline-first, progressive-web-apps
nadya
subscription management done right
Stars: ✭ 14 (-48.15%)
Mutual labels:  pouchdb, offline-first
vuepouch
A tiny library to enable you work with PouchDB in a Vuejs app. It syncs with remote CouchDB too :-)
Stars: ✭ 59 (+118.52%)
Mutual labels:  pouchdb
powerplant
Optimize and assist planning your garden
Stars: ✭ 75 (+177.78%)
Mutual labels:  pouchdb
Teller-iOS
iOS library that manages your app's cached data with ease.
Stars: ✭ 12 (-55.56%)
Mutual labels:  offline-first
Dianoia-app
Mobile (Ionic 3 - Angular 4) app about non-pharmaceutical activities and information for people with dementia.
Stars: ✭ 13 (-51.85%)
Mutual labels:  offline-first
ndb-core
Easy-to-use case management web app for NGOs anywhere in the world.
Stars: ✭ 32 (+18.52%)
Mutual labels:  offline-first
Pouchdb
🐨 - PouchDB is a pocket-sized database.
Stars: ✭ 14,625 (+54066.67%)
Mutual labels:  pouchdb
react-calculator
📐 PWA React + Redux Calculator
Stars: ✭ 65 (+140.74%)
Mutual labels:  offline-first
cryptocoincount
Keep track of your cryptocoin balances with CryptocoinCount
Stars: ✭ 47 (+74.07%)
Mutual labels:  offline-first
blog
www.lyyourc.com/
Stars: ✭ 25 (-7.41%)
Mutual labels:  offline-first

Build Status IBM Cloud Deployments

Create an Offline First Shopping List with React and PouchDB

Greenkeeper badge

In this code pattern, we will create an Offline First shopping list. Shopping List is an Offline First demo Progressive Web App built using React and PouchDB. This app is part of a series of Offline First demo apps, each built using a different stack.

When the reader has completed this Code Pattern and explored the code in this GitHub repository, they will understand how to:

  • Create a shopping list web application that stores its data in a local PouchDB database.
  • Turn the web application into a Progressive Web App that works with or without an internet connection.
  • Make the app sync to and from a remote Cloudant database.

Flow

  1. Browser loads Progressive Web App's resources from the web server.
  2. User interacts with the web app to add shopping lists and list items.
  3. Data is stored locally in PouchDB.
  4. PouchDB syncs its data with a remote IBM Cloudant database.

Included components

  • Cloudant NoSQL DB: A fully-managed data layer designed for modern web and mobile applications that leverages a flexible JSON schema. Based on the open source Apache CouchDB, IBM Cloudant provides additional full text and geospatial capabilities.

Featured technologies

  • PouchDB - An in-browser database that can replicate to and from a remote CouchDB or IBM Cloudant database.
  • React - React is a JavaScript library for building user interfaces.
  • Material UI - React components that implement Google's Material Design.
  • Apache® CouchDB™ - modern, document database hosted on your server or in the cloud.

Key concepts

This shopping list app is a small single page web application using the React framework and the PouchDB library. The web page will allow multiple shopping lists to be created (e.g., Groceries, Clothes) each with a number of shopping list items associated with them (e.g., Bread, Water).

So what sets this app apart? Its Offline First architecture. The Offline First approach plans for the most constrained network environment first, enabling a great user experience even while the device is offline or has only an intermittent connection, and providing progressive enhancement as network conditions improve. This design also makes the app incredibly performant (fast!) on the best of networks.

PouchDB, CouchDB, and Service Worker are the primary tools that turn our simple shopping list app into a high performance, offline-capable Progressive Web App.

Data stays reliably on your device, even while it's offline. Persistence of shopping lists and item data entered by the user is achieved using the in-browser database PouchDB. This will allow your data to survive between sessions and when disconnected from the network. (Whether you remember that you need juice while you're on your trusty home Wi-Fi or in the middle of the wilderness, you can still add it your list.)

Data syncs between devices when a connection is available. When a connection is available, the data is synced from the local device to a CouchDB database in the cloud, and can thus be shared across multiple devices or users. (Need to share your grocery list with your roommate or access it on both your phone and your laptop? No problem!)

The app loads quickly, even while offline. To keep the app itself functional while offline, a Service Worker is used to cache page resources (the most important HTML, CSS, and JavaScript files) when the web application is first visited. Each device must have a connection for this first visit, after which the app will be fully functional even while offline or in shoddy network conditions. (No more error messages or frustratingly slow page loads.)

The app can be installed on a mobile device. In combination with the Service Worker used for caching, a manifest file containing metadata allows the app to become a Progressive Web App, an enhanced website that can be installed on a mobile device and can then be used with or without an internet connection. (It's secretly still a website, but you can access it through one of those handy dandy little app icons on your homescreen!)

Explore the code in this GitHub repository to see how the Offline First design is applied.

Live demo

To see this app in action without installing anything, simply visit https://ibm-watson-data-lab.github.io/shopping-list-react-pouchdb in a web browser or on a mobile device.

Steps

Deploy to IBM Cloud

Deploy to IBM Cloud

  1. Press the above Deploy to IBM Cloud button and then click on Deploy.

  2. In Toolchains, click on Delivery Pipeline to watch while the app is deployed. Once deployed, the app can be viewed by clicking View app.

  3. To see the app and services created and configured for this code pattern, use the IBM Cloud dashboard. The app is named shopping-list-react-pouchdb with a unique suffix. The following services are created and easily identified by the sljsp prefix:

    • sljsp-CloudantNoSQLDB

Run locally

NOTE: These steps are only needed when running locally instead of using the Deploy to IBM Cloud button.

  1. Clone the repo.
  2. Install the dependencies.
  3. Run the app.
  4. Create a Cloudant or CouchDB service.

1. Clone the repo

Clone the shopping-list-react-pouchdb repository locally. In a terminal, run:

$ git clone https://github.com/ibm-watson-data-lab/shopping-list-react-pouchdb
$ cd shopping-list-react-pouchdb

2. Install the dependencies

To install the dependencies, run the command:

$ npm install

3. Run the app

This command serves the app at http://127.0.0.1:3000 and provides basic URL routing for the app:

$ npm start

4. Create a Cloudant or CouchDB service

PouchDB can synchronize with CouchDB and compatible servers. To run and test locally, you can install CouchDB. Alternatively, you can use a hosted Cloudant NoSQL DB service for your remote DB.

Installing Apache CouchDB

Install CouchDB 2.1. Instructions are available for installing CouchDB 2.1 on Unix-like systems, on Windows, on Mac OS X, on FreeBSD, and via other methods.

Configure CouchDB for a single-node setup, as opposed to a cluster setup. Once you have finished setting up CouchDB, you should be able to access CouchDB at http://127.0.0.1:5984/. Ensure that CouchDB is running and take note of your admin username and password.

Creating a Cloudant NoSQL DB service

To provision a managed Cloudant NoSQL DB

  • Log in to IBM Cloud.

    Sign up for an account, if you do not already have one.

  • Provision a Cloudant NoSQL DB Lite plan instance, which is free.

    If desired, you can also re-use an existing Cloudant NoSQL DB service instance. (Open the Data & Analytics resources dashboard to see a list of pre-provisioned instances that you have access to.)

  • Open the Service credentials tab.
  • Add new credentials for this service instance if no credentials have been defined yet.
  • View the credentials and note the value of the url property, which has the following format: https://username:[email protected].

Tip: Select the Manage tab and click Launch to open the Cloudant dashboard and manage the service instance.

Database and replication setup

  1. Create the remote database.
  2. Enable CORS.
  3. Set the replication target.

1. Create the remote database

  • Use the Cloudant or CouchDB dashboard to create a database.

  • Select the Databases tab on the left and then use the Create Database button to create the "shopping-list" database. The Shopping List app can be used locally before the database exists, but cannot sync until the remote database is completed.

    Create shopping-list database

2. Enable CORS

  • Open the Cloudant or CouchDB dashboard to enable Cross-Origin Resource Sharing (CORS).

  • Select the Account settings (or config) tab and open the CORS tab.

  • Enable CORS and restrict the domain as needed for security.

    Enable CORS

3. Set the replication target

Run the Shopping List app and use the Settings form to enter your database URL. If you use the IBM Cloud Cloudant URL taken from the service credentials as described above, the URL includes user name and password.

Add /shopping-list to the URL to connect to the database that you created.

Configure replication in app

Using the app

The app allows you to create a shopping list by clicking on the plus sign. Click on the ... icon in the list and choose "Open" to see its items. Then, you can add items to the list by clicking the plus sign. There is a checkbox to allow you to mark the items complete as you load up your cart.

When you have not configured your Replication Target or when you are offline, the lists will not sync. One good way to test this is to run two browsers. You can use Chrome and Firefox and have different lists in each.

When you go online and have the database and CORS enabled and the Replication Target is set, the shopping lists will sync. You will then be able to use both lists from either browser.

screenshot - creating a list

screenshot - adding items to a list

Running the tests

This repository uses the react-scripts test runner. Our continuous integration will run the tests when you push to GitHub. To test your code on your machine, simply run npm test.

This project does not, at present, have any automated tests. Tests can be added to the src/__tests__ directory. If you'd like to contribute some then please raise an issue and submit a pull-request - we'd be very happy to add them!

Deploying to GitHub Pages

The shopping list can be deployed to and accessed from GitHub Pages. To deploy to gh-pages branch, in a terminal, run:

$ npm run deploy

See https://ibm-watson-data-lab.github.io/shopping-list-react-pouchdb for a live demo.

Privacy Notice

Refer to https://github.com/IBM/metrics-collector-service#privacy-notice.

Disabling Deployment Tracking

To disable tracking, simply remove node log && from the package.json file.

Links

License

Apache 2.0

Apache®, Apache CouchDB™, CouchDB™, and the red couch logo are either registered trademarks or trademarks of the Apache Software Foundation in the United States and/or other countries.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].