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/image-url.jpg%20%22Image%20title%22?q=database&page=270&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 7183 results for "database"(2351ms)

KidCREADME.md2 matches

@Zoe13โ€ขUpdated 3 weeks ago
15```
16โ”œโ”€โ”€ backend/
17โ”‚ โ”œโ”€โ”€ database/
18โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts # Schema definitions
19โ”‚ โ”‚ โ””โ”€โ”€ queries.ts # DB query functions
54- **Code Editor**: Monaco Editor
55- **Backend**: Hono (TypeScript)
56- **Database**: SQLite
57- **C Compilation**: WebAssembly-based C compiler

KidCREADME.md2 matches

@Zoe13โ€ขUpdated 3 weeks ago
6
7- `index.ts` - Main entry point for the HTTP trigger
8- `database/` - Database migrations and queries
9- `routes/` - API route handlers
10- `services/` - Business logic services
31- `GET /api/users/:username/progress` - Get learning path with user progress
32
33## Database Schema
34
35The platform uses SQLite for data storage with the following tables:

KidCindex.ts2 matches

@Zoe13โ€ขUpdated 3 weeks ago
2import { readFile, serveFile } from "https://esm.town/v/std/utils@85-main/index.ts";
3import { parseProject } from "https://esm.town/v/std/utils@85-main/index.ts";
4import { runMigrations } from "./database/migrations.ts";
5import { apiRoutes } from "./routes/api.ts";
6
34app.use("*", customCors());
35
36// Run database migrations on startup
37await runMigrations();
38

KidCexercises.ts1 match

@Zoe13โ€ขUpdated 3 weeks ago
1import { Exercise } from "../database/queries.ts";
2import { compileAndRunCode } from "./compiler.ts";
3

KidCapi.ts1 match

@Zoe13โ€ขUpdated 3 weeks ago
11 getUserProgress,
12 getLearningPathWithProgress
13} from "../database/queries.ts";
14import { compileAndRunCode } from "../services/compiler.ts";
15import { validateExerciseSolution } from "../services/exercises.ts";

C_TuTorindex.ts2 matches

@DevHubโ€ขUpdated 3 weeks ago
2import { readFile, serveFile } from "https://esm.town/v/std/utils@85-main/index.ts";
3import { parseProject } from "https://esm.town/v/std/utils@85-main/index.ts";
4import { runMigrations } from "./database/migrations.ts";
5import { apiRoutes } from "./routes/api.ts";
6
34app.use("*", customCors());
35
36// Run database migrations on startup
37await runMigrations();
38

C_TuTorREADME.md2 matches

@DevHubโ€ขUpdated 3 weeks ago
15```
16โ”œโ”€โ”€ backend/
17โ”‚ โ”œโ”€โ”€ database/
18โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts # Schema definitions
19โ”‚ โ”‚ โ””โ”€โ”€ queries.ts # DB query functions
54- **Code Editor**: Monaco Editor
55- **Backend**: Hono (TypeScript)
56- **Database**: SQLite
57- **C Compilation**: WebAssembly-based C compiler

C_TuTorREADME.md2 matches

@DevHubโ€ขUpdated 3 weeks ago
6
7- `index.ts` - Main entry point for the HTTP trigger
8- `database/` - Database migrations and queries
9- `routes/` - API route handlers
10- `services/` - Business logic services
31- `GET /api/users/:username/progress` - Get learning path with user progress
32
33## Database Schema
34
35The platform uses SQLite for data storage with the following tables:

C_TuTorexercises.ts1 match

@DevHubโ€ขUpdated 3 weeks ago
1import { Exercise } from "../database/queries.ts";
2import { compileAndRunCode } from "./compiler.ts";
3

C_TuTorapi.ts1 match

@DevHubโ€ขUpdated 3 weeks ago
11 getUserProgress,
12 getLearningPathWithProgress
13} from "../database/queries.ts";
14import { compileAndRunCode } from "../services/compiler.ts";
15import { validateExerciseSolution } from "../services/exercises.ts";

bookmarksDatabase

@s3thiโ€ขUpdated 3 months ago

sqLiteDatabase1 file match

@ideofunkโ€ขUpdated 6 months ago