Get StartedApp StructureHello WorldHello World ContextHello JSONRoutingURL ParamsQuery ParamsApp MiddlewareRoute MiddlewareMarkdown MiddlewareTailwind MiddlewareStatic FileHello TSXTSX ComponentFunction ComponentServer Side RenderingOAuthMySQLPostgresRedisMongoDeno KVGroupingDeploymentStoreBenchmarks
Getting started
First, make sure you have Git and Deno installed.
See the git manual and the deno manual for details.
Generate default project from command line.
deno run -A -r https://fastro.deno.dev
The above command will generate default folders and files that you can use for the initial project.
cd project
Now let's run the application
deno task start
If there is no problem, you will see this message on the terminal
Listening on http://localhost:8000
Open that link on your browser or hit them via curl
curl http://localhost:8000
You can find more detailed instructions in the source code.