Quickstart

This page provides a guide to creating a clean an Enso project.

You can also use Enso within a monorepo or see how we arrive at running server by viewing our step by step, clean install guide.


One liner β€” Seriously

Use yarn or npx. We don’t like installing global packages.

# npx (default)
npx @ensojs/create-app && cd enso-app && yarn dev
# npx - with a custom app name
npx @ensojs/create-app next-cool-thing

# yarn (default)
yarn create @ensojs/app && cd enso-app && yarn dev
# yarn - with a custom app name
yarn create @ensojs/app next-cool-thing

Next

  • Learn more about the Concepts behind Enso
  • Start adding some functionality with some Recipes