Get started with Thunder
This guide will help you get started with Thunder quickly. You'll learn how to install Thunder, create your first project, and explore its key features.
Prerequisites
- Node.js 16 or higher
- npm, yarn, or pnpm
- Basic knowledge of web development
Installation
To get started with Thunder, you need to install the Thunder CLI. You can install it using npm:
npm install -g @thunder/cli
Or using yarn:
yarn global add @thunder/cli
Creating Your First Project
Once the CLI is installed, you can create a new Thunder project by running:
thunder create my-project
This will create a new directory called my-project
with a basic Thunder application structure.
Navigate to the project directory:
cd my-project
Starting the Development Server
To start the development server, run:
thunder dev
This will start a development server at http://localhost:3000
. Open this URL in your browser to see your Thunder application.
Next Steps
Complete Getting Started Guide
Learn all the basics in our comprehensive getting started guide.
Thunder Concepts
Understand the key concepts and architecture of Thunder.
Need Help?
If you encounter any issues during installation or setup, check out our Troubleshooting guides or join our community for assistance.