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

https://github.com/vfshera/lovable-screen-cap

Record your screen with just a few clicks. No downloads, no installations, just a simple web app that makes screen recording effortless.
https://github.com/vfshera/lovable-screen-cap

react react-router screen-capture

Last synced: about 2 months ago
JSON representation

Record your screen with just a few clicks. No downloads, no installations, just a simple web app that makes screen recording effortless.

Awesome Lists containing this project

README

          

# Screen Capture

## Getting Started

### Installation

Install the dependencies:

```bash
pnpm install
```

### Development

Start the development server with HMR:

```bash
pnpm dev
```

Your application will be available at `http://localhost:5173`.

## Building for Production

Create a production build:

```bash
pnpm build
```

## Deployment

If you're familiar with deploying Node applications, the built-in app server is production-ready.

Make sure to deploy the output of `pnpm build`

```
├── package.json
├── package-lock.json (or pnpm-lock.yaml, or bun.lockb)
├── build/
│ ├── client/ # Static assets
│ └── server/ # Server-side code
```