Skip to content

A resource that provides an explanation of the Go language from basic to advanced level with examples

Notifications You must be signed in to change notification settings

arzuups/StudysGolang

Repository files navigation

REPO STATEMENT

This repo is prepared for basic and intermediate understanding of Go Programming Language. The workspace of the codes written here is Visual Studio Code. You can find the download link in the KEY POINTS section. You also need to download to install Go in Visual Studio Code. Its link is also in the KEY POINTS section.

REPO CONTENTS

NOTES => The folders named Ubn-Homeworks and Ubn-Lessons are files that I learned from another software site and passed to the code.

DOWNLOAD LINKS

  • Go Download Link: Golang

    • Click on the one appropriate for your computer and it will download.
  • Visual Studio Code Download Link: Visual Studio Code

    • Click on the one appropriate for your computer and it will download.

KEY POINTS

Module Creation :

C:\StudysGolang> go mod init <module name> 
  • NOTE => You can replace with any module name you want.

Create A Folder :

C:\> mkdir goWorks --> C:\> cd goWorks 

Terminal Output :

C:\StudysGolang> go run main.go 

Install JSON Server :

C:\StudysGolang> npm install -g json-server
  • ATTENTION! => If you get an error in JSON Server installation, install it from Node.js , close and reopen your workspace.

Running The JSON Server :

C:\StudysGolang> json-server --watch db.json
  • ATTENTION! => If it fails after running it, type npx followed by a space and then json-server --watch db.json and run it again.
  • So like this :
C:\StudysGolang> npx json-server --watch db.json

About

A resource that provides an explanation of the Go language from basic to advanced level with examples

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages