From the course: Building Interactive UIs with SolidJS: Key Concepts and Features

Unlock the full course today

Join today to access over 24,800 courses taught by industry experts.

Setting up the task tracker

Setting up the task tracker

- [Instructor] It's time to set up the basic structure of a task tracker with SolidJS. Let's begin by creating our projects. To set up our app, we'll use the degit command. It's a fast way to download and use template repositories. Open your terminal or command prompt and type in npx degit, then solidjs slash templates slash js, then the name of the SolidJS app, in our case, my task tracker. This command will create the new directory named my task tracker and initialize it with a default SolidJS template. With a SolidJS project generated, we can open it up in our IDE or code editor of choice. I'll use VS code for this. So in the terminal or type in code, and then the name of a project, my task tracker. Now, let's take a tour of each structure. We'll start with the src directory. The src directory is where the magic happens. This is where our application source code resides. Starting with index.css, this file contains…

Contents