Basic starter is a well-rounded template that showcases the most important bits of working with Wasp.
- Node.js (newest LTS version recommended): We recommend install Node through a Node version manager, e.g.
nvm. - Wasp (latest version): Install via
curl -sSL https://get.wasp.sh/installer.sh | sh
You can use this template through the Wasp CLI:
wasp new <project-name>
# or
wasp new <project-name> -t basicTo start the application locally for development or preview purposes:
- Run
wasp db migrate-devto migrate the database to the latest migration - Run
wasp startto start the Wasp application. If running for the first time, this will also install the client and the server dependencies for you. - The application should be running on
localhost:3000. Open in it your browser to access the client.
To improve your Wasp development experience, we recommend installing the Wasp extension for VSCode.
To find out more about Wasp, visit out docs.