Initialize your project
π Learn how to initialize your project and add packagesβ
The init
command is the starting point for creating a new Svelte project using the Svelt tool. It allows you to quickly set up a new project with a specified name and optional toolkit integration, making it easy to get started with Svelte development.
π How to Use the init
Commandβ
Command Syntaxβ
svelt init [PROJECT_NAME] [TOOLKIT]
PROJECT_NAME
: The name of your new Svelte project.TOOLKIT
(optional): The toolkit to integrate with the project (List of every Toolkits available).
Examplesβ
svelt init my-new-project
This will create a new project named my-new-project using the default Svelte setup
βοΈ What Happens After Running init
?β
Once you run the init
command, the CLI will automatically:
-
Create a new directory: A new folder with the specified
PROJECT_NAME
will be created in the current working directory. -
Generate the basic project structure:
- The default files for a Svelte project will be created (e.g.,
src
,public
,package.json
, etc.). - The necessary dependencies will be installed using npm or yarn.
- The default files for a Svelte project will be created (e.g.,
-
Integrate the specified toolkit (if any):
- If you chose a toolkit, the CLI will automatically configure the project with the necessary dependencies, configuration files, and example styles.
- If no toolkit is specified, the default setup will be used without additional configuration.
-
Final Setup:
- After setup, you can navigate into your newly created project directory and start developing.
Example:
cd my-new-project
β Troubleshootingβ
I ran the init
command, but my project isnβt working. What should I do?β
- Ensure you have Node.js and npm installed. These are required to manage dependencies for the Svelte project.
- Verify your
svelt
installation by runningsvelt version
to make sure itβs correctly installed. - If you chose a toolkit, check that the respective dependencies are installed correctly by inspecting your
package.json
.