Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 894 Bytes

File metadata and controls

27 lines (18 loc) · 894 Bytes

Getting started

There are two ways to start a new Basys project:

Basys IDE (Visual Studio Code extension)

This is a recommended way to get started with Basys. The development environment provides a deep integration with Basys toolbox: sidebar panel for running toolbox commands, built-in linting, tests integration.

To get started install Basys extension for VSCode, open the Command Palette (Ctrl+Shift+P on Windows/Linux or ⇧⌘P on MacOS) and run Basys: Create project command.

CLI

If you prefer to use other code editors - no problem! You can start a new project with Basys CLI

# Install Basys CLI
npm install -g basys-cli
# or
yarn global add basys-cli

# Scaffold a new project from a starter template
basys init
cd <project-dir>

# Launch the development server
basys dev