Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/migueldcdev/idea-board-ts
https://github.com/migueldcdev/idea-board-ts
Last synced: about 12 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/migueldcdev/idea-board-ts
- Owner: migueldcdev
- Created: 2024-08-05T09:17:13.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-28T11:56:27.000Z (6 months ago)
- Last Synced: 2024-08-28T13:15:46.609Z (6 months ago)
- Language: TypeScript
- Homepage: https://idea-board-ts.vercel.app
- Size: 247 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.
![example-img](https://github.com/migueldcdev/repo-images/blob/main/idea-board/idea-board.png)
## 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
```