Coding Global Background
Coding Global

Jsv-system

Archiviert a month ago
0 Nachrichten
1 Mitglieder
Erstellt 2 months ago
Aktualisiert 2 months ago
In Discord öffnen
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:

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.