Val Town Code SearchReturn to Val Town

API Access

You can access search results via JSON API by adding format=json to your query:

https://codesearch.val.run/$%7Bart_info.art.src%7D?q=database&page=157&format=json

For typeahead suggestions, use the /typeahead endpoint:

https://codesearch.val.run/typeahead?q=database

Returns an array of strings in format "username" or "username/projectName"

Found 7161 results for "database"(819ms)

untitled-7020README.md4 matches

@priyanshu2307โ€ขUpdated 1 week ago
17- Categorize by genre, subject, or level
18- Barcode/QR scanning for fast entry
19- Integration with ISBN databases for autofill
20
21### Search & Catalog Browsing
45- Backend: Hono.js with TypeScript
46- Frontend: React with TypeScript
47- Database: SQLite
48- Styling: TailwindCSS
49
51```
52โ”œโ”€โ”€ backend/
53โ”‚ โ”œโ”€โ”€ database/
54โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts
55โ”‚ โ”‚ โ””โ”€โ”€ queries.ts
74
75## Getting Started
761. The system will automatically create the database tables on first run
772. Default admin user will be created (admin@library.com / admin123)
783. Access the system via the HTTP endpoint

todoREADME.md4 matches

@wolfโ€ขUpdated 1 week ago
10- โœ… Clear all completed todos
11- โœ… Responsive design with TailwindCSS
12- โœ… SQLite database for persistence
13- โœ… RESTful API
14
17```
18โ”œโ”€โ”€ backend/
19โ”‚ โ”œโ”€โ”€ database/
20โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts # Database schema
21โ”‚ โ”‚ โ””โ”€โ”€ queries.ts # Database operations
22โ”‚ โ””โ”€โ”€ index.ts # Main API server
23โ”œโ”€โ”€ frontend/

todoindex.ts3 matches

@wolfโ€ขUpdated 1 week ago
2import { cors } from "https://esm.sh/hono@4.0.10/cors";
3import { readFile, serveFile } from "https://esm.town/v/std/utils@85-main/index.ts";
4import { createTodoTable } from "./database/migrations.ts";
5import { getAllTodos, getTodoById, createTodo, updateTodo, deleteTodo } from "./database/queries.ts";
6import type { CreateTodoRequest, UpdateTodoRequest } from "../shared/types.ts";
7
8const app = new Hono();
9
10// Initialize database
11await createTodoTable();
12

tourguidemigrations.ts1 match

@neverstewโ€ขUpdated 1 week ago
40 `);
41
42 console.log('Database migrations completed');
43}
44

tourguideitinerary.ts1 match

@neverstewโ€ขUpdated 1 week ago
8 saveTourProgress,
9 getTourProgress
10} from "../database/queries.ts";
11import type { Itinerary, ItineraryRequest, TourProgress, ApiResponse } from "../../shared/types.ts";
12

InterfaceREADME.md5 matches

@izake_aaโ€ขUpdated 1 week ago
16```
17โ”œโ”€โ”€ backend/
18โ”‚ โ”œโ”€โ”€ database/
19โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts # Database schema
20โ”‚ โ”‚ โ””โ”€โ”€ queries.ts # Database operations
21โ”‚ โ”œโ”€โ”€ routes/
22โ”‚ โ”‚ โ””โ”€โ”€ expenses.ts # Expense API routes
37## Tech Stack
38
39- **Backend**: Hono.js with SQLite database
40- **Frontend**: React with TypeScript
41- **Styling**: TailwindCSS with custom gradients
90- โœ… Delete expenses with confirmation
91- โœ… Responsive design for mobile and desktop
92- โœ… SQLite database with proper indexing
93- โœ… RESTful API endpoints
94

Interfaceindex.ts2 matches

@izake_aaโ€ขUpdated 1 week ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { readFile, serveFile } from "https://esm.town/v/std/utils@85-main/index.ts";
3import { createTables } from "./database/migrations.ts";
4import expensesRouter from "./routes/expenses.ts";
5
11});
12
13// Initialize database
14await createTables();
15

Interfaceexpenses.ts1 match

@izake_aaโ€ขUpdated 1 week ago
6 deleteExpense,
7 getDashboardData
8} from "../database/queries.ts";
9import type { Expense } from "../../shared/types.ts";
10

Interfacemigrations.ts1 match

@izake_aaโ€ขUpdated 1 week ago
26 `);
27
28 console.log('Database tables created successfully');
29}
30

blogget-old-posts.ts1 match

@charmaineโ€ขUpdated 1 week ago
46 "slug": "codegen",
47 "link": "/blog/codegen",
48 "description": "Like Claude Artifacts, but with a backend and database",
49 "pubDate": "Thu, 22 Aug 2024 00:00:00 GMT",
50 "author": "JP Posma",

bookmarksDatabase

@s3thiโ€ขUpdated 3 months ago

sqLiteDatabase1 file match

@ideofunkโ€ขUpdated 6 months ago