bikash-lsdm
v2.0.0
Published
Beginner-friendly localStorage CRUD manager
Maintainers
Readme
Bikash LSDM
Beginner-friendly localStorage CRUD manager.
Features
- Simplifies CRUD operations with localStorage.
- Beginner-friendly API.
- Lightweight and fast.
Installation
Install via npm:
npm install bikash-lsdmUsage
Import the library and start using it:
const LSDM = require("bikash-lsdm");
// Example usage
LSDM.create("key", { name: "John Doe" });
const data = LSDM.read("key");
LSDM.update("key", { name: "Jane Doe" });
LSDM.delete("key");License
This project is licensed under the MIT License.
