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/$%7Bsuccess?q=react&page=715&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 16924 results for "react"(4571ms)

plantprofileApp.tsx3 matches

@seipatiannah1โ€ขUpdated 4 weeks ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState, useEffect } from "https://esm.sh/react@18.2.0";
3import { PlantProfile } from "../../shared/types.ts";
4import PlantList from "./PlantList.tsx";
17}
18
19const App: React.FC = () => {
20 const [plants, setPlants] = useState<PlantProfile[]>([]);
21 const [selectedPlant, setSelectedPlant] = useState<PlantProfile | null>(null);

plantprofileindex.tsx6 matches

@seipatiannah1โ€ขUpdated 4 weeks ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0";
3import ReactDOM from "https://esm.sh/react-dom@18.2.0";
4import App from "./components/App.tsx";
5
6ReactDOM.render(
7 <React.StrictMode>
8 <App />
9 </React.StrictMode>,
10 document.getElementById("app")
11);

AkashREADME.md2 matches

@Akashashnโ€ขUpdated 4 weeks ago
7- `index.html` - Main HTML template
8- `index.tsx` - Frontend entry point
9- `components/` - React components
10 - `App.tsx` - Main application component
11 - `ResumeUpload.tsx` - Resume upload component
15## Technologies
16
17- React 18.2.0
18- TailwindCSS (via CDN)
19- TypeScript

AkashResults.tsx3 matches

@Akashashnโ€ขUpdated 4 weeks ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState } from "react";
3import type { Resume, JobRequirement, ScoringResult } from "../../shared/types";
4
10}
11
12const Results: React.FC<ResultsProps> = ({
13 results,
14 resumes,

AkashJobForm.tsx6 matches

@Akashashnโ€ขUpdated 4 weeks ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState } from "react";
3import type { JobRequirement } from "../../shared/types";
4
9}
10
11const JobForm: React.FC<JobFormProps> = ({ onSubmit, jobs, onScoreResumes }) => {
12 const [title, setTitle] = useState<string>("");
13 const [description, setDescription] = useState<string>("");
18 const [selectedJob, setSelectedJob] = useState<JobRequirement | null>(null);
19
20 const handleSubmit = (e: React.FormEvent) => {
21 e.preventDefault();
22
111 value={requiredSkills}
112 onChange={(e) => setRequiredSkills(e.target.value)}
113 placeholder="e.g., JavaScript, React, Node.js"
114 required
115 />
380- Troubleshoot and fix bugs in existing applications
381- Mentor junior developers and conduct code reviews`,
382 requiredSkills: ["JavaScript", "React", "Node.js", "REST API"],
383 preferredSkills: ["TypeScript", "AWS", "Docker", "GraphQL", "CI/CD"],
384 minimumExperience: 3

AkashResumeUpload.tsx10 matches

@Akashashnโ€ขUpdated 4 weeks ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState } from "react";
3import type { Resume } from "../../shared/types";
4
8}
9
10const ResumeUpload: React.FC<ResumeUploadProps> = ({ onUpload, resumes }) => {
11 const [resumeText, setResumeText] = useState<string>("");
12 const [showExisting, setShowExisting] = useState<boolean>(false);
13 const [selectedResume, setSelectedResume] = useState<Resume | null>(null);
14
15 const handleSubmit = (e: React.FormEvent) => {
16 e.preventDefault();
17 if (resumeText.trim()) {
274
275SUMMARY
276Experienced software engineer with 5+ years of experience in full-stack development, specializing in React, Node.js, and cloud technologies. Passionate about building scalable applications and implementing machine learning solutions.
277
278SKILLS
279Programming Languages: JavaScript, TypeScript, Python, Java
280Frontend: React, Redux, HTML5, CSS3, Tailwind CSS
281Backend: Node.js, Express, Django, Spring Boot
282Databases: MongoDB, PostgreSQL, MySQL
288Senior Software Engineer
289TechCorp Inc. | Jan 2021 - Present
290- Led the development of a customer-facing dashboard using React and TypeScript, improving user engagement by 35%
291- Implemented CI/CD pipelines using GitHub Actions, reducing deployment time by 60%
292- Designed and built RESTful APIs using Node.js and Express, handling 1M+ daily requests
302Junior Developer
303WebSolutions Co. | Jun 2016 - Feb 2018
304- Built responsive web applications using React and Redux
305- Collaborated with UX designers to implement user interface components
306- Participated in agile development process with bi-weekly sprints
321AI-Powered Task Manager
322- Developed a task management application with natural language processing capabilities
323- Used React for frontend, Node.js for backend, and MongoDB for database
324- Implemented ML algorithms to categorize and prioritize tasks automatically
325
326E-commerce Platform
327- Built a full-stack e-commerce platform with product recommendation system
328- Utilized React, Express, and PostgreSQL with Sequelize ORM
329- Implemented payment processing with Stripe API
330

AkashApp.tsx4 matches

@Akashashnโ€ขUpdated 4 weeks ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState } from "react";
3import ResumeUpload from "./ResumeUpload";
4import JobForm from "./JobForm";
17}
18
19const App: React.FC = () => {
20 const [activeTab, setActiveTab] = useState<"upload" | "jobs" | "results">("upload");
21 const [resumes, setResumes] = useState<Resume[]>([]);
27
28 // Fetch resumes and jobs on initial load
29 React.useEffect(() => {
30 fetchResumes();
31 fetchJobs();

Akashindex.tsx5 matches

@Akashashnโ€ขUpdated 4 weeks ago
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "react";
3import { createRoot } from "react-dom/client";
4import App from "./components/App";
5
13 // Render the App component
14 root.render(
15 <React.StrictMode>
16 <App />
17 </React.StrictMode>
18 );
19} else {

Akashindex.html4 matches

@Akashashnโ€ขUpdated 4 weeks ago
44 <div id="root"></div>
45
46 <!-- React and ReactDOM -->
47 <script type="importmap">
48 {
49 "imports": {
50 "react": "https://esm.sh/react@18.2.0",
51 "react-dom": "https://esm.sh/react-dom@18.2.0",
52 "react-dom/client": "https://esm.sh/react-dom@18.2.0/client"
53 }
54 }

AkashREADME.md2 matches

@Akashashnโ€ขUpdated 4 weeks ago
20โ”œโ”€โ”€ frontend/
21โ”‚ โ”œโ”€โ”€ index.html # Main HTML template
22โ”‚ โ”œโ”€โ”€ app.tsx # Frontend React application
23โ”‚ โ””โ”€โ”€ components/ # UI components
24โ”‚ โ”œโ”€โ”€ ResumeUpload.tsx # Resume upload component
43- SQLite for data storage
44- Hono for backend API
45- React for frontend UI
46- TailwindCSS for styling

tanstackReactHonoExample10 file matches

@laurynasโ€ขUpdated 7 hours ago

reactHonoStarter4 file matches

@nbbaierโ€ขUpdated 3 days ago
effector
Write business logic with ease Meet the new standard for modern TypeScript development. Type-safe, reactive, framework-agnostic library to manage your business logic.
officialrajdeepsingh
Follow me if you learn more about JavaScript | TypeScript | React.js | Next.js | Linux | NixOS | Frontend Developer | https://linktr.ee/officialrajdeepsingh