{"id":32741858,"url":"https://github.com/arizkami/cef-quickstart","last_synced_at":"2026-04-12T00:03:39.549Z","repository":{"id":321231735,"uuid":"1053135012","full_name":"arizkami/cef-quickstart","owner":"arizkami","description":"a lightweight, cross-platform webview application built with C++ and CEF ","archived":false,"fork":false,"pushed_at":"2025-10-28T13:59:35.000Z","size":4875,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-28T15:35:36.929Z","etag":null,"topics":["bun","cef","chromium","cpp","nodejs","react","reactjs","typescript","webapp","webview","windows"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arizkami.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-09T03:27:57.000Z","updated_at":"2025-10-28T13:59:39.000Z","dependencies_parsed_at":"2025-10-28T15:35:44.926Z","dependency_job_id":null,"html_url":"https://github.com/arizkami/cef-quickstart","commit_stats":null,"previous_names":["arizkami/cef-quickstart"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/arizkami/cef-quickstart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arizkami%2Fcef-quickstart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arizkami%2Fcef-quickstart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arizkami%2Fcef-quickstart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arizkami%2Fcef-quickstart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arizkami","download_url":"https://codeload.github.com/arizkami/cef-quickstart/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arizkami%2Fcef-quickstart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":282453499,"owners_count":26671585,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-03T02:00:05.676Z","response_time":108,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bun","cef","chromium","cpp","nodejs","react","reactjs","typescript","webapp","webview","windows"],"created_at":"2025-11-03T12:00:59.290Z","updated_at":"2025-11-03T12:01:37.062Z","avatar_url":"https://github.com/arizkami.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CEF Quickstart\n\n![License](https://img.shields.io/badge/license-MIT-blue.svg)\n![Platform](https://img.shields.io/badge/platform-Windows-blue.svg)\n![C++](https://img.shields.io/badge/C%2B%2B-17-blue.svg)\n![TypeScript](https://img.shields.io/badge/TypeScript-5.0-blue.svg)\n![Bun](https://img.shields.io/badge/Bun-latest-orange.svg)\n\n\u003cimg src=\"docs/resources/app.png\"\u003e\n\nCEF Quickstart is a lightweight, cross-platform webview application built with C++ and CEF (Chromium Embedded Framework). It provides a simple yet powerful interface for embedding web content within native applications.\n\n## Features\n\n- 🚀 **Fast Performance**: Native C++ backend with optimized web-based frontend\n- 🎨 **Modern UI**: Clean, responsive interface built with React.js and TypeScript\n- 🛠️ **CMake Integration**: Seamless project building and management\n\n## Architecture\n\n```\ncef-quickstart/\n├── app/                    # C++ application core\n│   ├── main.cpp           # Application entry point\n│   ├── client.cpp         # WebView client implementation\n├── cef-quickstart/             # TypeScript frontend (React.js + Vite)\n│   ├── src/               # Frontend source code\n│   └── components/        # React.js components\n└── tools/                 # Build and utility tools\n    ├── build.ts           # CMake build automation\n    ├── clean.ts           # Project cleanup utility\n    └── utils/             # Conversion utilities\n```\n\n## Prerequisites\n\n- **Windows 10/11** with MSVC (Visual Studio 2019 or later)\n- **CMake 3.25+**\n- **Bun.js** (latest version)\n- **Git** with submodule support\n\n## Quick Start\n\n### 1. Clone the Repository\n\n```bash\ngit clone https://github.com/arizkami/cef-quickstart.git\ncd cef-quickstart\n```\n\n### 2. Install Dependencies\n\n```bash\nbun install\n```\n\n### 3. Build the Project\n\n```bash\n# Build frontend\nbun run build\n\n# build all\nbun run build:win\n```\n\n### 4. Run CEF Quickstart\n\n```bash\n.\\build\\Release\\cef-quickstart.exe\n```\n\n## Development\n\n### Available Scripts\n\n- `bun run dev` - Start development server for frontend\n- `bun run build` - Build production frontend\n- `bun run preview` - Preview built frontend\n- `bun run build:cmake \u003cproject\u003e` - Build specific CMake project\n- `bun run clean:cmake \u003cproject\u003e` - Clean specific CMake project\n- `bun run buildtobin` - Convert HTML to C++ binary\n- `bun run iconconvert` - Convert PNG to ICO format\n\n### Project Structure\n\n#### Frontend (webapp/)\nBuilt with React.js, TypeScript, and Vite for fast development and optimal performance.\n\n#### Backend (app/)\nC++ application using:\n- **Chromium Embedded Framework (CEF)** for rendering the frontend\n- **Binary Resource Provider** for embedded web assets\n- **Logger** for debugging and diagnostics\n\n### Build Tools\n\nCustom TypeScript build tools provide:\n- **Automated CMake builds** with proper configuration\n- **Project cleanup** with selective artifact removal\n- **Resource conversion** from web assets to C++ binaries\n- **Cross-platform compatibility** (Windows focus)\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n### Development Guidelines\n\n- Use **Bun.js** for all JavaScript/TypeScript operations\n- Use **CMake** for all C++ builds (MSVC on Windows)\n- Follow existing code style and conventions\n- Add tests for new features\n- Update documentation as needed\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Built with modern C++ and TypeScript\n- Powered by CMake and Bun.js\n- LSP integration for enhanced development experience\n- Chromium Embedded Framework for seamless web-native integration\n\n---\n**CEF Quickstart** - WebView with native performance\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farizkami%2Fcef-quickstart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farizkami%2Fcef-quickstart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farizkami%2Fcef-quickstart/lists"}