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=155&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 7779 results for "database"(3290ms)

HabitsREADME.md4 matches

@pfsthapsโ€ขUpdated 2 weeks ago
16```
17โ”œโ”€โ”€ backend/
18โ”‚ โ”œโ”€โ”€ database/
19โ”‚ โ”‚ โ”œโ”€โ”€ migrations.ts # Database schema setup
20โ”‚ โ”‚ โ””โ”€โ”€ queries.ts # Database query functions
21โ”‚ โ”œโ”€โ”€ routes/
22โ”‚ โ”‚ โ”œโ”€โ”€ habits.ts # Habit CRUD operations
54## Tech Stack
55
56- **Backend**: Hono.js with SQLite database
57- **Frontend**: React with TypeScript
58- **Styling**: TailwindCSS

Bizappkpis.ts1 match

@amakโ€ขUpdated 2 weeks ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getLatestKPIs, getKPIHistory, createKPI } from "../database/queries.ts";
3import type { KPI } from "../../shared/types.ts";
4

Bizappfollowups.ts1 match

@amakโ€ขUpdated 2 weeks ago
7 updateFollowup,
8 getClientById
9} from "../database/queries.ts";
10import type { FollowUp } from "../../shared/types.ts";
11

Bizappclients.ts1 match

@amakโ€ขUpdated 2 weeks ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getAllClients, getClientById, createClient, updateClient } from "../database/queries.ts";
3import type { Client } from "../../shared/types.ts";
4

Bizappstaff.ts1 match

@amakโ€ขUpdated 2 weeks ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getAllStaff, getStaffById, createStaff, updateStaff } from "../database/queries.ts";
3import type { Staff } from "../../shared/types.ts";
4

Richard_Amessages.ts1 match

@Richard_Aโ€ขUpdated 2 weeks ago
7 updateUserActivity,
8 getUserById
9} from "../database/queries.ts";
10import type { CreateMessageRequest } from "../../shared/types.ts";
11

Bizapptasks.ts1 match

@amakโ€ขUpdated 2 weeks ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getAllTasks, getTasksByStaff, createTask, updateTask } from "../database/queries.ts";
3import type { Task } from "../../shared/types.ts";
4

Richard_Adiscussions.ts1 match

@Richard_Aโ€ขUpdated 2 weeks ago
6 getDiscussionById,
7 updateUserActivity
8} from "../database/queries.ts";
9import type { CreateDiscussionRequest } from "../../shared/types.ts";
10

Richard_Ausers.ts1 match

@Richard_Aโ€ขUpdated 2 weeks ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getCookie } from "https://esm.sh/hono@3.11.7/cookie";
3import { getOnlineUsers, getAllUsers, updateUserActivity } from "../database/queries.ts";
4
5const users = new Hono();

Richard_Aauth.ts1 match

@Richard_Aโ€ขUpdated 2 weeks ago
1import { Hono } from "https://esm.sh/hono@3.11.7";
2import { getCookie, setCookie } from "https://esm.sh/hono@3.11.7/cookie";
3import { createUser, getUserByUsername, getUserById, updateUserActivity } from "../database/queries.ts";
4import type { LoginRequest } from "../../shared/types.ts";
5

bookmarksDatabase

@s3thiโ€ขUpdated 4 months ago

sqLiteDatabase1 file match

@ideofunkโ€ขUpdated 7 months ago