Skip to content

Commit

Permalink
Remove Firebase files; make feature wording tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
DallasHoff committed Jul 6, 2024
1 parent 0c0c212 commit eab7a37
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 84 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SQLocal makes it easy to run SQLite3 in the browser, backed by the origin privat
- 🧵 Runs the SQLite engine in a web worker so queries do not block the main thread
- 📂 Persists data to the origin private file system, which is optimized for fast file I/O
- 🔒 Each user can have their own private database instance
- 🚀 Simple API; just create a database and start running SQL queries
- 🚀 Simple API; just name your database and start running SQL queries
- 🛠️ Works with Kysely and Drizzle ORM for making type-safe queries

## Examples
Expand All @@ -26,8 +26,8 @@ const { sql } = new SQLocal('database.sqlite3');
// against the SQLite database
await sql`CREATE TABLE groceries (id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT)`;

// Execute a prepared statement just by inserting parameters
// in the SQL string
// Execute a parameterized statement just by inserting
// parameters in the SQL string
const items = ['bread', 'milk', 'rice'];
for (let item of items) {
await sql`INSERT INTO groceries (name) VALUES (${item})`;
Expand Down
5 changes: 0 additions & 5 deletions docs/.firebaserc

This file was deleted.

66 changes: 0 additions & 66 deletions docs/.gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions docs/firebase.json

This file was deleted.

4 changes: 2 additions & 2 deletions docs/guide/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const { sql } = new SQLocal('database.sqlite3');
// against the SQLite database
await sql`CREATE TABLE groceries (id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT)`;

// Execute a prepared statement just by inserting parameters
// in the SQL string
// Execute a parameterized statement just by inserting
// parameters in the SQL string
const items = ['bread', 'milk', 'rice'];
for (let item of items) {
await sql`INSERT INTO groceries (name) VALUES (${item})`;
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ features:
details: Each user can have their own private database instance
- title: Simple API
icon: 🚀
details: Just create a database and start running SQL queries
details: Just name your database and start running SQL queries
- title: TypeScript
icon: 🛠️
details: Works with Kysely and Drizzle ORM for making type-safe queries
Expand Down

0 comments on commit eab7a37

Please sign in to comment.