Examples
Practical, copy-pasteable examples to get you started with arrow across different project types.
reacttypescripttailwind
React SPA with routing
A single-page React application with file-based routing and Tailwind CSS.
Scaffold the project
arrow init react-router-app --template react --tsStart the dev server
cd react-router-app && arrow devBuild for production
arrow buildvuetypescript
Vue 3 dashboard
A lightweight dashboard built with Vue 3 and the Composition API.
Scaffold the project
arrow init vue-dashboard --template vue --tsAdd a charting plugin
arrow add @arrow/plugin-chartsStart the dev server
cd vue-dashboard && arrow dev --opensveltessrmarkdown
SvelteKit blog
A content-driven blog with server-side rendering and markdown support.
Scaffold the project
arrow init svelte-blog --template svelteCreate a new post
arrow generate post "hello-world"Preview the site
arrow build && arrow previewnodeapifastify
Node API server
A REST API built with Fastify and arrow dev tools.
Scaffold the project
arrow init node-api --template nodeStart the server with watch
cd node-api && arrow devRun integration tests
arrow test