FormPath JS library for reactive form data mapping and IndexedDB persistence.
npm install formpathFormPath JS is a vanilla JavaScript library that maps form input names into nested JSON
structures and persists them in IndexedDB for reactive, durable form state.
``bash`
pnpm add formpath
`js
import FormPath from 'formpath';
const ff = new FormPath({
onChange: (data) => console.log('Live Data:', data)
});
`
`bash`
pnpm install
pnpm build
The landing page and example suite live in the formpath.github.io` package at the
repository root.