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/$1?q=database&page=49&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 7195 results for "database"(1710ms)

BloggedREADME.md5 matches

@David_Naviโ€ขUpdated 6 days ago
16```
17โ”œโ”€โ”€ backend/
18โ”‚ โ”œโ”€โ”€ database/
19โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts # Database schema setup
20โ”‚ โ”‚ โ””โ”€โ”€ queries.ts # Database query functions
21โ”‚ โ”œโ”€โ”€ routes/
22โ”‚ โ”‚ โ”œโ”€โ”€ auth.ts # Authentication routes
44- **Backend**: Hono (TypeScript API framework)
45- **Frontend**: React 18.2.0 with TypeScript
46- **Database**: SQLite
47- **Styling**: TailwindCSS
48- **Storage**: Val Town Blob for user avatars
50## Getting Started
51
521. The backend automatically sets up the database on first run
532. Visit the main page to start browsing posts
543. Create an account to start posting and interacting

HAPIREADME.md4 matches

@dIgitalfulusโ€ขUpdated 6 days ago
11```
12โ”œโ”€โ”€ backend/
13โ”‚ โ”œโ”€โ”€ database/
14โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts # Database schema setup
15โ”‚ โ”‚ โ””โ”€โ”€ queries.ts # Database query functions
16โ”‚ โ”œโ”€โ”€ routes/
17โ”‚ โ”‚ โ”œโ”€โ”€ properties.ts # Property CRUD operations
41## Tech Stack
42
43- **Backend**: Hono.js with SQLite database
44- **Frontend**: React with TypeScript
45- **Styling**: TailwindCSS

Jobpostingchat.ts1 match

@faithyzโ€ขUpdated 6 days ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getMessagesByJobId, createMessage } from "../database/queries.ts";
3import type { CreateMessageRequest } from "../../shared/types.ts";
4

Jobpostingjobs.ts1 match

@faithyzโ€ขUpdated 6 days ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getAllJobs, getJobById, createJob } from "../database/queries.ts";
3import type { CreateJobRequest } from "../../shared/types.ts";
4

Jobpostingmigrations.ts1 match

@faithyzโ€ขUpdated 6 days ago
28 )`);
29
30 console.log('Database migrations completed');
31}
32

JobpostingREADME.md3 matches

@faithyzโ€ขUpdated 6 days ago
14```
15โ”œโ”€โ”€ backend/
16โ”‚ โ”œโ”€โ”€ database/
17โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts # Database schema setup
18โ”‚ โ”‚ โ””โ”€โ”€ queries.ts # Database query functions
19โ”‚ โ”œโ”€โ”€ routes/
20โ”‚ โ”‚ โ”œโ”€โ”€ jobs.ts # Job posting endpoints

SURGICALGALAREADME.md5 matches

@Sanya56โ€ขUpdated 6 days ago
16โ”œโ”€โ”€ backend/
17โ”‚ โ”œโ”€โ”€ index.ts # Main Hono server
18โ”‚ โ”œโ”€โ”€ database/
19โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts # Database schema
20โ”‚ โ”‚ โ””โ”€โ”€ queries.ts # Database queries
21โ”‚ โ””โ”€โ”€ routes/
22โ”‚ โ””โ”€โ”€ api.ts # API endpoints
75## Development
76
77- **Backend**: Hono framework with SQLite database
78- **Frontend**: React 18 with TypeScript
79- **Styling**: TailwindCSS with custom CSS animations
80- **Database**: SQLite for persistent data storage
81- **Deployment**: Val Town serverless platform

osakwe1chat.ts1 match

@osakweโ€ขUpdated 6 days ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getChatMessages, createChatMessage } from "../database/queries.ts";
3import type { ChatFormData } from "../../shared/types.ts";
4

osakwe1properties.ts1 match

@osakweโ€ขUpdated 6 days ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getAllProperties, createProperty, getPropertyById } from "../database/queries.ts";
3import type { PropertyFormData } from "../../shared/types.ts";
4

osakwe1migrations.ts1 match

@osakweโ€ขUpdated 6 days ago
35 `);
36
37 console.log('Database migrations completed');
38}
39

bookmarksDatabase

@s3thiโ€ขUpdated 3 months ago

sqLiteDatabase1 file match

@ideofunkโ€ขUpdated 6 months ago