Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/migueldcdev/idea-board-ts


https://github.com/migueldcdev/idea-board-ts

Last synced: about 12 hours ago
JSON representation

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
```