Creating Your First GoLang Project
Index of GoLang Resources
- How to install Go? | Chapter 1 |
- Creating Your First GoLang Project |Chapter 2 |
- GoLang Language Fundamentals | Chapter 3 |
- Control Flow in GoLang | Chapter 4 |
- GoLang Data Structures | Chapter 5.1 |
- GoLang Data Structures | Chapter 5.2 |
- GoLang Concurrency | Chapter 6 |
- Error Handling in GoLang | Chapter 7 |
- Common Utilities in GoLang Project | Chapter 8 |
- GoLang Database/SQL | Chapter 9 |
- GO with GORM | Chapter 10 |
As we have already covered the basics of Golang in our Chapter-1, let’s see how to create your first Go project with simple and easy-to-follow steps.
Step 1) Open File menu and create a new Go Project as shown below :
Enter the name of the project and choose your workspace location.
After creating project your IDE screen will appear like this –
You have to create your folders and .go files in src folder only.
Step 1)Now right click on src folder→ New→ Folder
Step 2) Then right click on the main (folder created by you) folder→ New Go File
Here Enter your go file name with .go extension and choose the Command Source file option. The first option will create empty main functions and Simple Web Server option creates Simple Web Application.
Create Go file in the src/main folder of your project with extension .go
The folders like github.com golang.org and other ones will be created as you download the dependencies.
Here you can write your code. For example –
Now for executing this program, you need to build the project. So double click on the build option as shown below –
It will build like this and generates the main.exe binary file in bin package.
Sometimes while building project, you will face build errors like –
So check the message and identify which package is missing and then go to command prompt and type the >go get
So for the above messages, enter below commands →
go get -u github.com/alecthomas/gometalinter
go get -u github.com/stretchr/testify
go get golang.org/x/net/html
go get golang.org/x/text/encoding
go get golang.org/x/text/encoding/charmap
go get golang.org/x/text/encoding/htmlindex
go get golang.org/x/text/transform
go get golang.org/x/crypto/ssh/terminal
Now again try to rebuild it and it will create the main.exe file in your bin folder of project file for example – Main.exe
Step 3) Now for running your project
Right click on your project→ Select Run As→ Run Configurations
Then select the project and package to build i.e. main
Select your project by clicking on Browse
Step 4) Now, select the package to build
And then click on Run so that your Go program will execute
We can also execute the go program by going to the main pkg of project and type –
> go run main.go command
Step 5) Again if you need more programs inside, follow the same procedure
Go Commands –
go build→ builds go code; if code is package main, it creates a binary executable in the main folder & if code is just a package then it builds it and throws away the binary
go install→ builds and install go code; if code is package main, it creates binary executable and drops in workspaces’ bin folder; if the code is a package, it build it and keeps in pkg folder
import→ import path is everything after “src ” folder in your workspace. You can alias packages in your imports
If you want to debug your project then select your project → Right click→ select Debug As Application as shown below
After this, you will get an error – Error with command:gdb –version
Now download the gdb for windows from below link and add to its debugger configuration
http://www.equation.com/servlet/equation.cmd?fa=gdb
Select Project→ Right Click on Project→ Select Debugger tab from the window
Now your project will debug properly.
Conclusion:
As you now know how to create your first Go Project, check out our next chapter on ‘Language Fundamentals‘
About RemotePanda
RemotePanda is a personalized platform for companies to hire remote talent and get the quality work delivered from the city Pune. The resources in our talent pool are our close network connections. While connecting them with you, we make sure to manage the quality, growth, legalities, and the delivery of their work. The idea is to make remote work successful for you. Get in touch with us to learn why RemotePanda is the best fit solution for your business requirements.