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.
- Host: GitHub
- URL: https://github.com/vfshera/lovable-screen-cap
- Owner: vfshera
- License: mit
- Created: 2025-05-13T23:28:43.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-14T01:39:23.000Z (about 1 year ago)
- Last Synced: 2025-08-29T10:21:31.457Z (10 months ago)
- Topics: react, react-router, screen-capture
- Language: TypeScript
- Homepage: https://screcap.vercel.app/
- Size: 163 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```