What problem does it solve?
This skill helps developers quickly bootstrap a WebF project with WebF Go and a Vite-based frontend, reducing onboarding time and setup friction for new WebF projects.
Core Features & Use Cases
- Step-by-step setup: guides you through installing Node.js, creating a Vite project, installing dependencies, and running the dev server.
- Framework-agnostic bootstrapping: works with React, Vue, Svelte, or vanilla JS via Vite-based templates.
- Live testing in WebF Go: demonstrates loading the app in WebF Go for desktop and mobile testing.
- Use Case: when onboarding a new developer, this skill helps spin up a ready-to-run WebF project quickly.
Quick Start
Follow these commands to scaffold a new project, install dependencies, start the dev server, and load the app into WebF Go.
-
Create a new project with Vite:
npm create vite@latest my-webf-app
-
Move into the project and install dependencies:
cd my-webf-app
npm install
-
Start the development server:
npm run dev
-
Enable network access for mobile testing (optional):
npm run dev -- --host
-
Load the app in WebF Go by pasting the dev server URL (e.g., http://localhost:5173) into WebF Go.