This may be a naive question or a requirement. I parse huge raw data and restructure it into a set of JSON files. These JSON files reside in a directory). I would like to avoid setting up any NoSql database such as - MongoDB (any database for that matter)
Based on these JSON files, I would like to setup express models so that I can make queries to JSON files. There won't be any Create, Update, and Delete operations user will perform.
I was looking for a module similar to mongoose which can make things simpler.