https://github.com/migueldcdev/idea-board-ts
Create, view, edit, sort and delete your ideas in a fully responsive React app.
https://github.com/migueldcdev/idea-board-ts
playwright react react-testing-library tailwindcss typescript vitest
Last synced: 9 months ago
JSON representation
Create, view, edit, sort and delete your ideas in a fully responsive React app.
- Host: GitHub
- URL: https://github.com/migueldcdev/idea-board-ts
- Owner: migueldcdev
- Created: 2024-08-05T09:17:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-11T12:21:23.000Z (over 1 year ago)
- Last Synced: 2025-10-06T03:06:13.607Z (9 months ago)
- Topics: playwright, react, react-testing-library, tailwindcss, typescript, vitest
- Language: TypeScript
- Homepage: https://idea-board-ts.vercel.app
- Size: 253 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Idea Board
Idea board app that uses your browser local storage to persist your ideas.

## Useful commands
### Installation
First, install the project dependencies:
```bash
npm install
```
### Development
To start the development server and begin working on your project, run:
```bash
npm run dev
```
### Testing
To run the test suite and ensure everything is functioning correctly, use:
```bash
npm run test
```
To run playwright:
```bash
npx playwright test
```
To run playwright in a specific browser:
```bash
npx playwright test --project=chromium
```
To run playwiright in UI mode:
```bash
npx playwright test --ui
```
### Code formatting
To format your code using Prettier, execute:
```bash
npx prettier . --write
```