Skip to main content

Tutorial Intro

Let's discover pouchlite.

Getting Started

Get started by installing pouchlite.

 npm install --save @pouchlab/lite

What you'll need

Initialize

Generate a new pouchlite project in current directory **generates: .pouchlite **

add .pouchlite folder to .gitignore

 import pouchlite from '@pouchlab/lite'

const lite = pouchlite().init()//returns info,createDb,removeDb,useDb

//or
const lite = pouchlite()
lite.init()