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//%22$%7Bconfig.siteUrl%7D/%22?q=react&page=6&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 21633 results for "react"(1109ms)

TopTenVideospremium-version.html2 matches

@pmapowerโ€ขUpdated 10 hours ago
129 </label>
130 <input type="text" id="customSubNiche" name="customSubNiche"
131 placeholder="e.g., React tutorials, Vegan recipes..."
132 class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-purple-500 focus:border-purple-500">
133 </div>
436 gaming: ['Game Reviews', 'Let\'s Play', 'Gaming News', 'Esports', 'Game Development', 'Mobile Gaming', 'Retro Gaming', 'Gaming Hardware'],
437 education: ['Online Courses', 'Language Learning', 'Math Tutorials', 'Science Experiments', 'History Lessons', 'Study Tips', 'Test Preparation', 'Educational Kids Content'],
438 entertainment: ['Movie Reviews', 'Comedy Skits', 'Reaction Videos', 'Celebrity News', 'TV Show Recaps', 'Stand-up Comedy', 'Viral Challenges', 'Pop Culture'],
439 lifestyle: ['Home Decor', 'Organization Tips', 'Minimalism', 'Self Improvement', 'Productivity', 'Morning Routines', 'Life Hacks', 'Personal Development'],
440 fitness: ['Workout Routines', 'Nutrition Tips', 'Weight Loss', 'Yoga', 'Bodybuilding', 'Running', 'Mental Health', 'Healthy Recipes'],

TopTenVideosindex.html2 matches

@pmapowerโ€ขUpdated 10 hours ago
59 </label>
60 <input type="text" id="customSubNiche" name="customSubNiche"
61 placeholder="e.g., React tutorials, Vegan recipes..."
62 class="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
63 </div>
285 'Movie Reviews',
286 'Comedy Skits',
287 'Reaction Videos',
288 'Celebrity News',
289 'TV Show Recaps',

basic-html-starterREADME.md1 match

@evermindโ€ขUpdated 12 hours ago
34
35If you want more interactivity, check out this
36[React starter](https://www.val.town/x/std/reactHonoStarter).
37
38### โ† favicon.svg

weatherAppmain.tsx3 matches

@dcm31โ€ขUpdated 18 hours ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState, useEffect } from "https://esm.sh/react@18.2.0";
3import { createRoot } from "https://esm.sh/react-dom@18.2.0/client";
4
5const cities = [

boombox-generatorog.tsx1 match

@danfishgoldโ€ขUpdated 18 hours ago
1/** @jsxImportSource https://esm.sh/preact */
2import { boomboxData } from "./boombox.js";
3import { ImageResponse } from "npm:@vercel/og";
45โ”‚ โ”œโ”€โ”€ routes/ # Route definitions and HTTP handling
46โ”‚ โ”‚ โ”œโ”€โ”€ api/ # API endpoints
47โ”‚ โ”‚ โ”œโ”€โ”€ glimpse/ # Glimpse routes (enhanced with React frontend)
48โ”‚ โ”‚ โ”œโ”€โ”€ tasks/ # Task-related routes
49โ”‚ โ”‚ โ”œโ”€โ”€ views/ # User-facing views
50โ”‚ โ”‚ โ””โ”€โ”€ authCheck.ts # Authentication middleware
51โ”‚ โ””โ”€โ”€ services/ # External service integrations
52โ”œโ”€โ”€ frontend/ # React frontend assets
53โ”‚ โ”œโ”€โ”€ glimpse.html # HTML template for glimpse views
54โ”‚ โ”œโ”€โ”€ glimpse.tsx # React entry point
55โ”‚ โ”œโ”€โ”€ components/ # React components
56โ”‚ โ”‚ โ”œโ”€โ”€ GlimpseView.tsx # Main glimpse display component
57โ”‚ โ”‚ โ”œโ”€โ”€ NotionBlock.tsx # Notion block renderer
120### Data Access Routes
121- `GET /views/glimpse/:id` - Get complete page data with blocks by Notion page ID (JSON only)
122- `GET /glimpse/:id` - **Enhanced with React Frontend** - Content negotiation based on Accept header:
123 - **Browser requests** (`Accept: text/html`): Returns rich React frontend with interactive Notion content display
124 - **API requests** (`Accept: application/json`): Returns raw JSON data (same as before)
125 - **Fallback**: If HTML template fails to load, automatically serves JSON
126
127### React Frontend Features
128
129The `/glimpse/:id` endpoint now includes a rich React frontend when accessed via browser:
130
131#### **Content Rendering**
153- **Content Negotiation**: Single endpoint serves both HTML and JSON
154- **Static File Serving**: Frontend assets served via `/frontend/*` route
155- **React 18.2.0**: Pinned version for consistency
156- **TypeScript Support**: Shared types for Notion data structures
157- **Prism.js Integration**: Advanced syntax highlighting with automatic language detection, line numbers, and support for 30+ programming languages including JavaScript, TypeScript, Python, Java, C++, and more (performance-optimized with non-blocking script loading)
158
159**Note:** The glimpse endpoints now provide both programmatic access (JSON) and user-friendly viewing (React frontend) from the same URL, maintaining backward compatibility while adding rich content display capabilities.
160
161### Demo API Endpoints

basic-html-starterREADME.md1 match

@howkinsbestsellerโ€ขUpdated 1 day ago
34
35If you want more interactivity, check out this
36[React starter](https://www.val.town/x/std/reactHonoStarter).
37
38### โ† favicon.svg

basic-html-starterREADME.md1 match

@mitchygrowthhackingโ€ขUpdated 1 day ago
34
35If you want more interactivity, check out this
36[React starter](https://www.val.town/x/std/reactHonoStarter).
37
38### โ† favicon.svg

tanstack-basicmain.tsx5 matches

@nbbaierโ€ขUpdated 1 day ago
1/** @jsxImportSource https://esm.sh/react@19 */
2import {
3 QueryClient,
4 QueryClientProvider,
5} from "https://esm.sh/@tanstack/react-query@^5.0.0?deps=react@19";
6import {
7 createRootRouteWithContext,
11 Outlet,
12 RouterProvider,
13} from "https://esm.sh/@tanstack/react-router@^1.121.0?deps=react@19";
14import React from "https://esm.sh/react@19";
15import { createRoot } from "https://esm.sh/react-dom@19/client?deps=react@19";
16import { App } from "./App.tsx";
17

tanstack-basicApp.tsx2 matches

@nbbaierโ€ขUpdated 1 day ago
1/** @jsxImportSource https://esm.sh/react@19 */
2import React from "https://esm.sh/react@19";
3import { type PostType, usePosts } from "./posts.ts";
4

glimpse2-runbook-view-glimpse-save-login-react19 file matches

@lightweightโ€ขUpdated 6 hours ago

wa-hono-react4 file matches

@nbbaierโ€ขUpdated 1 day ago
react
franky47
Freelance software engineer, open-sourcerer, speaker. Building `nuqs`, a type-safe search params state manager for React.