9 matches across 1 files for TODO lang:TypeScript path:fixtures/flight-parcel/src/server.tsx lang:TypeScript
snippet_mode: auto · sorted by relevance
fixtures/flight-parcel/src/server.tsx TYPESCRIPT 9 matches · showing 5 view file →
21
22// Page components. These must have "use server-entry" so they are treated as code splitting entry points.
23import {Todos} from './Todos';
24
25const app = express();
· · ·
35
36app.get('/', async (req, res) => {
37 await render(req, res, <Todos />);
38});
39
· · ·
40app.post('/', async (req, res) => {
41 await handleAction(req, res, <Todos />);
42});
43
· · ·
44app.get('/todos/:id', async (req, res) => {
45 await render(req, res, <Todos id={Number(req.params.id)} />);
46});
· · ·
45 await render(req, res, <Todos id={Number(req.params.id)} />);
46});
47
+ 4 more matches in this file
Search syntax
auth loginboth terms (AND is implicit)
auth OR logineither term
NOT path:vendorexclude matches
"exact phrase"quoted exact match
/func\s+Test/regex
handler~1fuzzy (Levenshtein 1)
file:*_test.gofilename glob
path:pkg/auth/**full path glob
lang:golanguage filter

Search any public repo from your terminal

This page calls POST /api/v1/code_search. Same tool, available over MCP for Claude/Cursor/Copilot.