### Initialize a New Electrobun App Source: https://www.electrobun.dev/docs/classes/Electroview Use this command to quickly set up a new Electrobun project. It initializes the project structure and necessary configuration files. ```bash bunx electrobun init ``` -------------------------------- ### Create a New BrowserWindow Source: https://www.electrobun.dev/docs/classes/Electroview This code snippet demonstrates how to create a new browser window for your Electrobun application. It specifies the window's title and the URL of the initial HTML content. ```typescript import { BrowserWindow } from "electrobun/bun"; const win = new BrowserWindow({ title: "My App", url: "views://mainview/index.html", }); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.