Skip to main content
Module

x/fastro/docs/quickstart.md

Fast and simple web application framework for deno
Go to Latest
File

Quickstart

If you prefer to use deno only and just want to implement your entrypoint, skip these steps below. Go to create entrypoint.

  1. Install deno (linux/mac)

    curl -fsSL https://deno.land/x/install/install.sh | sh

    For other OS, go to deno installation.

  2. Install fastro-cli

    deno install -A https://raw.fastro.dev/master/cli/fastro.ts

    Add -f --reload if you want to get the latest update.

    Change master with the latest version to prevent breaking changes.

  3. Make a new directory

    mkdir webapp && cd webapp
  4. Initiate a project

    fastro init
  5. Run server

    fastro serve

    By default, it will be reloaded when changes are made

  6. Open url

    http://localhost:3000

What’s next: