This is not the official documentation of LaunchFast. To browse how to use and set up LaunchFast, check out the official documentation.
In this guide, you will learn how to TODO. You will go through the process of TODO.
Prerequisites
You'll need the following:
- Node.js 18 or later
 
Table Of Contents
Create a new Astro application
Let’s get started by creating a new Astro project. Execute the following command:
npm create astro@latest my-appnpm create astro is the recommended way to scaffold an Astro project quickly.
When prompted, choose:
Emptywhen prompted on how to start the new project.Yeswhen prompted if plan to write Typescript.Strictwhen prompted how strict Typescript should be.Yeswhen prompted to install dependencies.Yeswhen prompted to initialize a git repository.
Once that’s done, you can move into the project directory and start the app:
cd my-appnpm run devThe app should be running on localhost:4321.
Change TODO
TODO
---import App from "./App.astro";---
<h1>Astro</h1><span>New</span>Build and Test your Astro application locally
To test the application in application, prepare a build and run the preview server using the command below:
npm run build && npm run previewConclusion
In this guide, you learned how to TODO.