Files

17 lines
787 B
Plaintext
Raw Permalink Normal View History

2021-09-27 19:35:30 +10:00
---
sidebar_position: 5
---
# Developing your Application
You can run your application in development mode by running `wails dev` from your project directory. This will do the following things:
- Build your application and run it
2022-11-28 17:13:22 +08:00
- Bind your Go code to the frontend so it can be called from JavaScript
2022-09-18 11:00:39 +10:00
- Using the power of [Vite](https://vitejs.dev/), will watch for modifications in your Go files and rebuild/re-run on change
- Sets up a [webserver](http://localhost:34115) that will serve your application over a browser. This allows you to use your favourite browser extensions. You can even call your Go code from the console
2021-09-27 19:35:30 +10:00
2022-03-30 23:21:33 +11:00
To get started, run `wails dev` in the project directory. More information on this can be found [here](../reference/cli.mdx#dev).
2021-09-27 19:35:30 +10:00
Coming soon: Tutorial