Skip to content

Commit 244ba9e

Browse files
committed
#116 add JSON/NDJSON
1 parent 53e5194 commit 244ba9e

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44

55
# sqliteviz
66

7-
Sqliteviz is a single-page offline-first PWA for fully client-side visualisation of SQLite databases or CSV files.
7+
Sqliteviz is a single-page offline-first PWA for fully client-side visualisation
8+
of SQLite databases, CSV, JSON or NDJSON files.
89

910
With sqliteviz you can:
1011
- run SQL queries against a SQLite database and create [Plotly][11] charts and pivot tables based on the result sets
11-
- import a CSV file into a SQLite database and visualize imported data
12+
- import a CSV/JSON/NDJSON file into a SQLite database and visualize imported data
1213
- export result set to CSV file
1314
- manage inquiries and run them against different databases
1415
- import/export inquiries from/to a JSON file

public/manifest.webmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"background_color": "white",
3-
"description": "Sqliteviz is a single-page application for fully client-side visualisation of SQLite databases or CSV.",
3+
"description": "Sqliteviz is a single-page application for fully client-side visualisation of SQLite databases, CSV, JSON or NDJSON.",
44
"display": "fullscreen",
55
"icons": [
66
{

src/components/DbUploader.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
@click="browse"
1111
>
1212
<div class="text">
13-
Drop the database or CSV file here or click to choose a file from your computer.
13+
Drop the database, CSV, JSON or NDJSON file here
14+
or click to choose a file from your computer.
1415
</div>
1516
</div>
1617
</div>

src/components/svg/addTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</defs>
3535
</svg>
3636
<span class="icon-tooltip" :style="tooltipStyle" ref="tooltip">
37-
Add new table from CSV
37+
Add new table from CSV, JSON or NDJSON
3838
</span>
3939
</span>
4040
</template>

src/components/svg/changeDb.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/>
2323
</svg>
2424
<span class="icon-tooltip" :style="tooltipStyle" ref="tooltip">
25-
Load another database or CSV
25+
Load another database, CSV, JSON or NDJSON
2626
</span>
2727
</div>
2828
</template>

0 commit comments

Comments
 (0)