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/?q=react&page=640&format=json

For typeahead suggestions, use the /typeahead endpoint:

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

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

Found 20795 results for "react"(21239ms)

AppforPrinceindex.html1 match

@hyeaman1โ€ขUpdated 2 months ago
29
30 <script type="module">
31 import { createRoot } from "https://esm.sh/react-dom@18.2.0/client?deps=react@18.2.0";
32 import App from "/frontend/components/App.tsx";
33

SalesManagementDashboard.tsx2 matches

@Hesbonโ€ขUpdated 2 months ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import type { Contact, NetworkingEvent } from "../../shared/types.ts";
4

SalesManagementApp.tsx2 matches

@Hesbonโ€ขUpdated 2 months ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState, useEffect } from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import Dashboard from "./Dashboard.tsx";
4import ContactList from "./ContactList.tsx";

Homeindex.tsx3 matches

@nanaoseiiiiiiiiiโ€ขUpdated 2 months ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import { createRoot } from "https://esm.sh/react-dom@18.2.0/client?deps=react@18.2.0,react-dom@18.2.0";
4import App from "./components/App.tsx";
5

SalesManagementindex.tsx3 matches

@Hesbonโ€ขUpdated 2 months ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import { createRoot } from "https://esm.sh/react-dom@18.2.0/client?deps=react@18.2.0,react-dom@18.2.0";
4import App from "./components/App.tsx";
5

MesseJREADME.md2 matches

@MesseJโ€ขUpdated 2 months ago
23โ”œโ”€โ”€ frontend/
24โ”‚ โ”œโ”€โ”€ components/
25โ”‚ โ”‚ โ”œโ”€โ”€ App.tsx # Main React component
26โ”‚ โ”‚ โ”œโ”€โ”€ MachineryCard.tsx # Individual machinery item
27โ”‚ โ”‚ โ”œโ”€โ”€ ReviewSection.tsx # Reviews display and form
36
371. The backend runs on Hono with SQLite database
382. Frontend uses React with TailwindCSS for styling
393. Database tables are created automatically on first run
404. Sample machinery data is seeded for demonstration

untitled-266UserList.tsx2 matches

@mmmmโ€ขUpdated 2 months ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import type { User } from "../../shared/types.ts";
4

untitled-266MessageInput.tsx5 matches

@mmmmโ€ขUpdated 2 months ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState, useRef } from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3
4interface MessageInputProps {
11 const textareaRef = useRef<HTMLTextAreaElement>(null);
12
13 const handleSubmit = async (e: React.FormEvent) => {
14 e.preventDefault();
15
33 };
34
35 const handleKeyPress = (e: React.KeyboardEvent) => {
36 if (e.key === 'Enter' && !e.shiftKey) {
37 e.preventDefault();
40 };
41
42 const handleTextareaChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
43 setMessage(e.target.value);
44

SalesManagementREADME.md2 matches

@Hesbonโ€ขUpdated 2 months ago
33โ”‚ โ”‚ โ””โ”€โ”€ Dashboard.tsx # Overview dashboard
34โ”‚ โ”œโ”€โ”€ index.html # Main HTML template
35โ”‚ โ”œโ”€โ”€ index.tsx # React entry point
36โ”‚ โ””โ”€โ”€ style.css # Custom styles
37โ””โ”€โ”€ shared/
49
50- Backend: Hono + SQLite
51- Frontend: React + TypeScript + TailwindCSS
52- Storage: Val Town SQLite

EstateskillsearchSubmissionsList.tsx2 matches

@jiboladโ€ขUpdated 2 months ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import type { Submission } from "../../shared/types.ts";
4

reactHonoStarter3 file matches

@niceandneatโ€ขUpdated 6 hours ago

MiniAppStarter11 file matches

@moeโ€ขUpdated 1 week ago
Hono + React + Tailwind + Farcaster Mini App Starter Project
react
franky47
Freelance software engineer, open-sourcerer, speaker. Building `nuqs`, a type-safe search params state manager for React.