This is perfect. This is what I was looking for, being experienced at Node & React I was exploring ways to learn Go. This looks like a perfect starting point. Looking forward for more such tutorials. Thank You !!
Hi man, your video help me so much in learning Golang, React and TS. I love building from scratch this way because it helps me figure out what i need to do . Thank you so much ! I really appreciate this video
We need a video about the history timeline and the relationship bw different programming languages, there is issues that later languages aim to solve, it's overwhelming Please can we have a tutorial about Rag, especially with local no code RAG like VERBA tool The last finetuning video was informative Thank you
Hi, around minute 30, with fiber.Post demonstration, how do you get variable todos without to define it ? I see you have a "todos" in the address, but it needs to be converted to become a variable, isn't it ? Where did you converted it to become a variable ? I don't get this part...
@@hadezuka ha yes, i can see it at line 20 (time: 22:00). todos:= []Todo{} Thank you. I'm an the way to make running a CSR with Go+React.js together. I'm using an other one well known channel YT and convert it to run with Fiber. It is not easy... maybe this subject is interesting you ?
do you think this is a good starting point to learn go? ive been always using js, node and such, am startingto getting bored of it, or maybe i just want to learn something new
Anyone else having problems installing air? Version constraints conflict: module declares its path as: …/air-verse/air but was required as: …/cosmtrek/air
Worry not buddy, I've been there, what you need to do is to find out the place you are struggling whether it's go, react or tanstack query, then just search for it tutorial online, after learning you should be able to know, why it used, how to use it (a surface level idea) and what sre thr alternatives, so you can mentally map it, and you won't struggle as much as before
I don't understand why many of those APIs in Go tutorials don't use the built-in net/http Go package. I mean, let's not make the same mistake as with the JavaScript ecosystem, where you have to choose between a plethora of frameworks that do the exact same thing but differently.
@@metcaelfe Don't get me wrong. I'm not saying that Fiber is bad or that you shouldn't use any third-party packages. However, to truly understand the nature of the language, I always prefer to use what the language itself offers first. Then, based on the use case, I consider using third-party packages for convenience. This approach is especially important if you are a junior developer or new to the language and in many videos they forgot to mention that.
go seems quite good on top but so much writing you can pretty much achieve this by writing half of the amount code in nodejs and also why so much use of *
root = "." # The root directory of the project tmp_dir = "tmp" # The temporary directory where air will store its temporary files [build] # The build configuration bin = "./tmp/main" cmd = "go build -o ./tmp/main ." exclude_dir = [ "tmp", "client"] exclude_file = [] exclude_regex = [] exclude_unchanged = false full_bin = "" include_dir = [] include_ext = ["go", "tpl", "tmpl"] command to run air - `air -c air.toml` with this air.toml you can remove exclude client dir. Hope it helps
Hope it helps! Thanks for watching ❤
Wow you at free code camp❤
Thanks
More project tutorials like this with GO!
This was needed!
This is perfect. This is what I was looking for, being experienced at Node & React I was exploring ways to learn Go.
This looks like a perfect starting point.
Looking forward for more such tutorials. Thank You !!
same here bro, dont give up
Thanks!
Hi man, your video help me so much in learning Golang, React and TS. I love building from scratch this way because it helps me figure out what i need to do . Thank you so much ! I really appreciate this video
Thank you for this! This is really good to see Go as back end and React to the front end in one tutorial.
Bro, thank you so much, i just don't have words. You are the best!!!
Its time to learn go and react😊
More go tutorials please this was awesome!
Awesome work ❤❤❤
OMG. Exactly at the right time. Love you FCC
PLEASE MORE TUTORIAL ABOUT GO AND REACT!😭
More go tutorials :)
Wow Thank you so much for the amazing content 👍👏🙌👌🤞✌🤩
this is amazing thank you ❤
We need a video about the history timeline and the relationship bw different programming languages, there is issues that later languages aim to solve, it's overwhelming
Please can we have a tutorial about Rag, especially with local no code RAG like VERBA tool
The last finetuning video was informative
Thank you
This was awesome!
thanks a lot man, help so much
thank you i will learn tomorrow.
Bring more such full stack development content on golang
Maybe next could be Go + Postgres + Flutter || NextJS. Maybe include sockets.
more Go fullstack project please
Los Amo....❤
Thank you very much
More of this with Golang and Node!
GO + HTMX next please!
Finally Go!!!
I would love to have Devops project built using GO!!!
bu kanalda türk anlatıcıya denk gelmek çok güzel
amazing!
Smooth!!!!
Hi, around minute 30, with fiber.Post demonstration, how do you get variable todos without to define it ? I see you have a "todos" in the address, but it needs to be converted to become a variable, isn't it ? Where did you converted it to become a variable ? I don't get this part...
it's defined in the main function, so it'll be saved in the memory as long as the program running.
@@hadezuka ha yes, i can see it at line 20 (time: 22:00). todos:= []Todo{}
Thank you.
I'm an the way to make running a CSR with Go+React.js together.
I'm using an other one well known channel YT and convert it to run with Fiber. It is not easy... maybe this subject is interesting you ?
@@DGDG0000000 I still new with Gilang, not really understand it well..
Great 🎉!
❤
I have my main.go in a cmd/server but air doesn't seem to pick it up?
Future developers: you're welcome.
i have this error in deployment: Error loading file .envopen .env: no such file or directory, whats wrong ?
Need video about IDX guide and some projects in it..
Best language
bookmarking 1:13:55
do you think this is a good starting point to learn go? ive been always using js, node and such, am startingto getting bored of it, or maybe i just want to learn something new
Good day greetings
I can't install air
I already added the new path but it still doesn't install
Anyone else having problems installing air?
Version constraints conflict: module declares its path as: …/air-verse/air but was required as: …/cosmtrek/air
how have you solved it?
@@LittleStepsEveryDay-bk2fe change the github to air-verse/air
GO haven't template engine? somthing like blade in php
What font u use ? Monolisa ?
I guess, yes
Well I went, but it didn’t react well 😢
HTMX + GO
I don't know anything happening here 😢
Worry not buddy, I've been there, what you need to do is to find out the place you are struggling whether it's go, react or tanstack query, then just search for it tutorial online, after learning you should be able to know, why it used, how to use it (a surface level idea) and what sre thr alternatives, so you can mentally map it, and you won't struggle as much as before
First
mergin Go and... react?..
I don't understand why many of those APIs in Go tutorials don't use the built-in net/http Go package. I mean, let's not make the same mistake as with the JavaScript ecosystem, where you have to choose between a plethora of frameworks that do the exact same thing but differently.
Because it was only in recent version of go that it became that robust a package.
I agree with you btw
@@metcaelfe Don't get me wrong. I'm not saying that Fiber is bad or that you shouldn't use any third-party packages. However, to truly understand the nature of the language, I always prefer to use what the language itself offers first. Then, based on the use case, I consider using third-party packages for convenience. This approach is especially important if you are a junior developer or new to the language and in many videos they forgot to mention that.
I recommend Let's Go books by alex edwards if you want tutorial about building web app using net/http
@@404Gh0st Let's Go Further by Alex Edwards is incrediblely good.
I'm not going back to npm, HTMX all the way!
That's my plan, but what component frameworks do you use and how do you integrate and compile them? I don't like using cdn links
Second
What about gin?
Davis Ronald Garcia Angela Jackson Michelle
..
go seems quite good on top but so much writing you can pretty much achieve this by writing half of the amount code in nodejs and also why so much use of *
root = "." # The root directory of the project
tmp_dir = "tmp" # The temporary directory where air will store its temporary files
[build] # The build configuration
bin = "./tmp/main"
cmd = "go build -o ./tmp/main ."
exclude_dir = [ "tmp", "client"]
exclude_file = []
exclude_regex = []
exclude_unchanged = false
full_bin = ""
include_dir = []
include_ext = ["go", "tpl", "tmpl"]
command to run air - `air -c air.toml`
with this air.toml you can remove exclude client dir. Hope it helps
todos todos todos 🥱
Thanks!
❤
First