The Sounds Table is a React soundboard for memorable clips from Spanish creators.
Board metadata lives in src/data; audio remains hosted separately under sounds and
is loaded only when a visitor presses a clip.
Install dependencies with Corepack (the repository uses Yarn Classic):
corepack yarn install --frozen-lockfileUseful commands:
corepack yarn start
corepack yarn test:ci
corepack yarn build- Add or update a JSON file in
src/datawithtitleandsoundsfields. - Add its lazy loader and route aliases in
src/components/BoardPage.tsxandsrc/index.tsx. - Add its canonical path to
src/seo-pages.jsand an index card when it should be publicly discoverable. - Run
corepack yarn test:ciandcorepack yarn build.
Run the interactive helper to add a local MP3 to an existing board:
corepack yarn sound:addChoose the board, enter the display name, and provide either the MP3's full path or its
filename from your Downloads folder. The helper copies the file into the right sounds
directory, adds a New entry immediately after the Top sounds, and runs board-data
validation. It never overwrites an existing file or deletes the source download.
For a non-interactive invocation:
corepack yarn sound:add --board elXokas --name "¡Cállate ya!" --file clip.mp3Board JSON is loaded per route. Audio instances are created only after the user selects a clip and are released when the board unmounts. The app shell service worker caches only same-origin assets and derives its cache version from each production build; moving audio to a first-party CDN is the next step before enabling offline audio caching.
corepack yarn generate:seo creates static crawler-readable pages for every canonical
board path. These pages include page-specific metadata, JSON-LD, and a sound-name list
before the React app starts. The deployment also includes robots.txt, sitemap.xml,
and llms.txt for search engines and AI crawlers.
To switch GitHub-hosted audio to a CDN without editing the JSON files, set
REACT_APP_AUDIO_CDN_URL at build time to the CDN URL whose object layout mirrors this
repository (for example, https://media.example.com). The CDN must permit browser CORS
requests and should use long-lived immutable cache headers for versioned audio objects.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Note: this is a one-way operation. Once you eject, you can’t go back!
If you aren’t satisfied with the build tool and configuration choices, you can eject at any time. This command will remove the single build dependency from your project.
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
You don’t have to ever use eject. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.