Skip to main content

Tutorial Intro

Let's discover Tailspiral in less than 5 minutes.

Install the Command Line Interface (CLI)

install the CLI with npm or yarn :

npm install -g @tailspiral/cli
yarn global add @tailspiral/cli

Login to your account

tailspiral login

Create a new module or clone an existing one

tailspiral new module my-module

Or copy some templates

tailspiral new module my-module --template basics

note

To see the list of available templates, run tailspiral templates

Create Scaffold a new component

tailspiral new component my-component

note

new components are created in the src/components folder and will use react and typescript by default, run tailspiral support to see the list of supported frameworks and libraries. To use javascript instead of typescript, run tailspiral new component my-component --js

Deploy your new changes or modules

tailspiral deploy