Just a Go IDE. It features :
- Autocomplete.
- Syntax correction.
- Interactive terminal via web socket.
- Line tags in relation to failed build logs.
- Project build scripts.
- View web application output.
- Build docker images (Must have docker running on host) .
- Breakpoints and debugging with Delve.
- Regex directory search.
- Automatically lints your code in the background, and suggests code fixes.
- Go v1.18+.
If the server launch hangs on startup, close it and install the additional requirements manually. Prior to running the commands, set your GOPATH to $home/workspace
. You can do this on Windows with set GOPATH=%USERPROFILE%\workspace
.
Run the following command :
go get github.com/mdempsky/gocode
To add debug support, you must install delve. You can find the guide here. (Don't worry it is quick) Install Delve
$ go install github.com/thestrukture/IDE@latest
$ IDE
$ IDE --headless
Please create a new issue on Github to report a bug.