vodding is a "vodding" application — a web app built with React, TypeScript and Vite for creating, managing, and sharing voddings. (A "vodding" in this project is an app-defined unit of content — the repo provides the UI and tooling to author, view, and collaborate on voddings.)
This repository provides a starter application with development tooling, linting, and a straightforward contribution workflow so others can help build and improve vodding. See CONTRIBUTING.md and LICENSE for contribution guidelines and licensing.
- What this app is
- Features
- Tech stack
- Getting started
- Development
- Contributing
- Code style & tests
- Reporting issues
- License
- Code of conduct
Vodingg is the frontend application for authoring and interacting with "voddings". It is intended to be:
- Simple to run locally for development and testing
- Easy to extend with new UI components and integrations
- Friendly to contributors with clear guidelines and automated checks
This repository currently holds the frontend implementation (React + TypeScript + Vite). Backend or hosting integrations may be provided in separate repositories or future work.
- Component-driven UI using React and TypeScript
- Fast local development powered by Vite
- Type-aware linting and recommended ESLint configuration
- Minimal opinionated starter to make contribution straightforward
- React
- TypeScript
- Vite
- ESLint (TypeScript-aware)
- (Optional) Prettier for formatting
Prerequisites:
- Node.js (LTS recommended, e.g. Node 18+)
- A modern package manager — we recommend using Bun or pnpm for faster installs and deterministic installs. npm and Yarn are supported as well, but Bun and pnpm are preferred.
Quick start (recommended):
-
Using Bun (fast runtime + package manager)
- Install dependencies:
bun install
- Start the dev server:
bun run dev
- Build for production:
bun run build
- Preview the production build locally:
bun run preview
- Install dependencies:
-
Using pnpm (fast, disk-efficient, and reproducible):
- Install dependencies:
pnpm install
- Start the dev server:
pnpm dev- (or
pnpm run devif your environment requires the explicitrun)
- Build for production:
pnpm build
- Preview the production build locally:
pnpm preview
- Install dependencies:
Notes:
- If you prefer,
npmoryarnalso work. For example:npm install/npm run devoryarn/yarn dev. - This project uses the standard Vite script names by default. If your
package.jsondiffers, use the scripts defined there. - Bun provides an integrated runtime and package manager. If you choose Bun, ensure you're running a Bun-supported Node API surface (most Vite workflows work fine with Bun; check Bun docs if you hit runtime differences).
- Create a feature branch from
main:- Example branch names:
feature/add-login,fix/issue-123
- Example branch names:
- Keep commits focused and atomic. Prefer multiple small commits over one huge commit.
- Use descriptive commit messages. We recommend Conventional Commits (e.g.
feat: add login button,fix: resolve null pointer in Player). - Before opening a pull request:
- Run linters:
npm run lintor the equivalent script for your package manager (e.g.pnpm lintorbun run lint) - Run tests:
npm test(orpnpm test/bun run testif configured) - Build the project to ensure production build succeeds:
npm run build(orpnpm build/bun run build)
- Run linters:
Pull requests will be reviewed by maintainers. A PR should include:
- A short summary of what the change does
- Any relevant screenshots or recordings for UI changes
- Tests or manual verification steps
- Link to a related issue (if any)
We welcome contributions of any size.
How to contribute:
- Fork the repository.
- Create a branch from
mainnamedfeature/your-featureorfix/issue-number-description. - Make your change, keeping it scoped and well-documented.
- Run the project's tests and linters locally.
- Push your branch to your fork and open a pull request against this repository's
mainbranch. - Address review comments and update your PR until it is approved and merged.
Guidelines:
- Include tests for new features or bug fixes when practical.
- Keep accessibility in mind for UI components.
- Add or update documentation where behavior has changed.
- Small, well-tested PRs merge faster.
Pull request checklist (maintainers may use this):
- PR targets
main - Descriptive title and summary
- Linked to an issue when applicable
- Tests added/updated
- Linting and type checks pass
- Manual verification steps provided for UI changes
- TypeScript should be used for new code.
- Favor functional, pure components where appropriate and isolate side effects.
- Use existing patterns in the codebase for state management, hooks, and component organization.
- Use ESLint rules that are included in the repository. If you add new rules, discuss them in the PR.
- If a test suite exists, add unit and/or integration tests for new features or bug fixes.
When reporting a bug or requesting a feature, please include:
- A short descriptive title
- Steps to reproduce
- Expected behavior
- Actual behavior (include screenshots if helpful)
- Environment information (OS, Node version, browser/version)
- Any relevant logs or errors
Good issues make it easier for others to help and to triage quickly.
This project is licensed under the MIT License.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please follow a respectful, inclusive, and constructive approach when interacting in issues and pull requests. We recommend adopting the Contributor Covenant (https://www.contributor-covenant.org/) as a basis for project behavior.
If you need help getting set up or have questions about contributing, open an issue describing your situation and a maintainer or contributor will follow up.
Thank you for your interest in Vodding — contributions are welcome!