Jsv-system
Archived a month ago
C
CoderX-176-max
Verified
JSV: A Simpler Way to Organize Data
Tired of spreadsheet chaos but intimidated by databases? JSV offers a middle ground - structured data without complexity.
What it is:
· File-based system (no servers, no SQL)
· Clean .jst files for your data
· Simple queries with JQL language
· Excel-ready .jsv exports
Example .jst file:
Simple queries:
Perfect for:
· Small business inventory
· Personal collections
· Research data
· Any list that's outgrown spreadsheets
Get started:
GitHub: https://github.com/JSV-net/jsv-system
Simple, file-based, no subscriptions. Try it with one small project first.
Tired of spreadsheet chaos but intimidated by databases? JSV offers a middle ground - structured data without complexity.
What it is:
· File-based system (no servers, no SQL)
· Clean .jst files for your data
· Simple queries with JQL language
· Excel-ready .jsv exports
Example .jst file:
database{ name: "library" }
required{ * }
schema{
title: {type: "string"}
author: {type: "string"}
read: {type: "bool"}
}
data{
{title: "The Great Gatsby", author: "Fitzgerald", read: true}
}
Simple queries:
jsv query "QUERY library.data WHERE read = false"
jsv query "COUNT library.data"
Perfect for:
· Small business inventory
· Personal collections
· Research data
· Any list that's outgrown spreadsheets
Get started:
npm install -g jsv-system
jsv init my-project
GitHub: https://github.com/JSV-net/jsv-system
Simple, file-based, no subscriptions. Try it with one small project first.
