Month: March 2020

  • How to integrate Pouch DB with Angular ?

    I have been exploring with developing offline first web applications and stumbled upon Pouch DB recently . Pouch DB impressed me. It is a very simple but effective way to store data offline (in the browser) and then sync it with database on the cloud (through Couch db). Pouch DB and Couch DB work hand…

  • How to remove an item from a list of displayed items in angular?

    Lets say you are displaying a list of items in a table using angular . The template code might look like this: I am using bootstrap here and passing the id of the product that I want to delete when user clicks on delete button. Here is the typescript code : I have added only…