A thin JavaScript layer to use the Node.js SQLite module as a NoSQL store. Written during the RomaJS July Meetup Hack night.
Developed by @lifeisfoo @fabio-sp @arnymore @alfiuzzo89.
Caution
This is a proof of concept, use at your own risk.
import KVLite from "./kv.mjs";
const kv = new KVLite();
const result = kv.set(argv[2], argv[3]);
const retrieved = kv.get(argv[2]);MIT