No video

A Very Simple Tech Stack

  Рет қаралды 70,682

Awesome

Awesome

Күн бұрын

Building a small app with HTMX, Go Fiber and Uno CSS.
💬 Topics:
- What is HTMX;
- Working with Go Fiber;
- What is Atomic CSS;
- HTMX Architecture;
- Alternative to JS frameworks;
- Easy to use tech stack;
GitHub Repo - github.com/awe...
Patreon - / awesomeclub
#javascript #htmx #go

Пікірлер: 195
@adidibrani
@adidibrani Жыл бұрын
In 2024 we'll go back to HTML and CSS
@awesome-coding
@awesome-coding Жыл бұрын
I hope so! :D
@whoknows3679
@whoknows3679 Жыл бұрын
When we stop using css and html?
@Soleryth
@Soleryth Жыл бұрын
​@@whoknows3679 React with JSX, to some extend Angular and Vue, where you don't directly control your data from the tags but rather in functions like onMount, where you need to load your data using a fetch, then register it in a state objetc, that triggers a re-render of your HTML template, etc. CSS Bootstrap and it's alternative have been overwhelming, but in the last years we see a come back to utility classes like tailwind ( tho it's still a script rather than simple style sheet file )
@maxlife459
@maxlife459 Жыл бұрын
return to monke
@hb50777
@hb50777 Жыл бұрын
Needed..😅
@akindurosegun2459
@akindurosegun2459 8 ай бұрын
I used this stack recently, It was so easy that it felt like something was wrong!
@bakaotaku2002
@bakaotaku2002 Жыл бұрын
Very nice video overall, but would've liked if you showed the results at last and how difficult it is to deploy such a app.
@awesome-coding
@awesome-coding Жыл бұрын
I'll work on a video showcasing the end result. It is very easy to deploy this app - at the end of the day it is just a Go program.
@d2vin
@d2vin Жыл бұрын
@@awesome-coding a simple click through of what it looks like or a GitHub link would be much appreciated! Subbed.
@dandogamer
@dandogamer 11 ай бұрын
It should be incredibly easy to deploy as its just a binary. You can stick it onto any server running on any OS
@verified_tinker1818
@verified_tinker1818 11 ай бұрын
The ease of deployment is probably the main reason to use this stack.
@adavidmezei
@adavidmezei 11 ай бұрын
@@verified_tinker1818 I prefer Tailwind, PHP and HTMX
@vic_shine
@vic_shine Жыл бұрын
awesome explanation, thanks ❤ hope this continues with more complex tasks for explaining more of htmx + Go 😊
@awesome-coding
@awesome-coding Жыл бұрын
Glad you liked it!
@woodmanmade
@woodmanmade 11 ай бұрын
Literally playing with the stack right now (well with Tailwind instead) and it's really quite nice!
@awesome-coding
@awesome-coding 11 ай бұрын
Nice! I love the simplicity of Go and HTMX combined.
@patrickren7395
@patrickren7395 11 ай бұрын
Template engine using custom html props are not new, but adding the ability to make XHR request is pretty cool
@narrei666
@narrei666 Жыл бұрын
pretty infuriating that we didn't see actual result website in the video, lol
@awesome-coding
@awesome-coding Жыл бұрын
ah.. sorry about that. I tried to keep the video as short and tight as possible, and I forgot to showcase the result 🤦‍♂️
@volt8399
@volt8399 10 ай бұрын
Thank you so much for this, you have reassured me on how I can use this stack on my own projects. I also really like unocss interactive page super newbie friendly.
@awesome-coding
@awesome-coding 10 ай бұрын
Glad it was helpful! Thank you so much for the Super Thanks!
@dustsucker4704
@dustsucker4704 5 ай бұрын
Getting started with only a webapp i think this Stack is one of the best. However if you have more than one applications or need an API for your App this aproach unfortunatly does not scale that Well as you will need a JSON or XML endpoint at some point and handling json and HTML instead of just json could prove to be quite time consuming.
@_ultraviolet
@_ultraviolet 4 ай бұрын
the entire point of htmx is that it replaces json
@Niksorus
@Niksorus Жыл бұрын
Great intro! I wish you'd have shown what the webpage actually looks like with this project though
@awesome-coding
@awesome-coding Жыл бұрын
Thank you! I know - sorry - completely forgot to showcase the result.🤦‍♂️
@vojtastruhar8950
@vojtastruhar8950 10 ай бұрын
The thumbnail looks like a Fireship video. Good job
@tcurdt
@tcurdt Жыл бұрын
It's either just the tightly coupled way we used building things 20y ago. Or it's just another less scalable angle of Phoenix Liveviews. I haven't made up my mind yet.
@awesome-coding
@awesome-coding Жыл бұрын
I think this is a fair assessment :D
@TechBuddy_
@TechBuddy_ Жыл бұрын
Yes ( for the first one ) and no htmx is just the frontend part which lets you choose whatever backend tech you choose. Yes other solutions have little improvements in dx but I think we can achieve that with very minimal js
@Noritoshi-r8m
@Noritoshi-r8m Жыл бұрын
HTMX should the the standard, that's so cool.
@IvanRandomDude
@IvanRandomDude Жыл бұрын
Go might be simple as a language but that actually leads to doing web development in it harder . Even if you use some framework (like Fiber) you are most likely going to miss a lots of features that exist in other big feature-rich frameworks like Laravel, Django, NextJs etc... Because of that I find it harder to do web dev in go regardless of it's simplicity. The mentality of go community that all you need is standard library makes it often very hard because you have do to a lots of things manually while in other languages/frameworks you have those problems already solved. So in that regard go is not freaking easy at all. It's very hard to do it right because you have to do it yourself.
@UTJK.
@UTJK. Жыл бұрын
Given its charactestics, I think that Go should be used only by experienced developers when they don't have an equally performant alternative.
@massy-3961
@massy-3961 Жыл бұрын
Considering you named a bunch of battery included frameworks, then say Fiber, which is a minimalistic approach like Express or Flask, yeah no duh your gonna require either making what you are looking for or importing it. It’s the same with Express and Flask, you want an ORM, import it, database? Import it. It’s not that complicated. Not to mention if you really want a kitted batteries included framework, there are many MVC frameworks for Golang.
@rw_panic0_0
@rw_panic0_0 Жыл бұрын
this is not a correct comparison since you are comparing a minimal http library (fiber) with batteries included frameworks
@DavidThorpe
@DavidThorpe Жыл бұрын
His point is that Go doesn’t seem to have a batteries included framework like Laravel or Rails that is heralded by its own community. OP is spot on. Go is fantastic and very powerful and I use it daily for work in a larger org, but if I wanted to build something for a startup I’d reach for it only if I hit a problem with compute speed or needed something small and isolated that performed very fast.
@massy-3961
@massy-3961 Жыл бұрын
@@DavidThorpe well even if the community doesn’t herald one framework (mainly because the framework ecosystem is extremely diverse and everyone chooses a different framework) there are still many batteries included frameworks. Go Buffalo, Go Appy, uTron, and my personal favorite, Goyave. Now these aren’t popular because Go is very unopinionated in nature and developers rather build their own system designs, not to mention go is primarily a micro service and rest api builder, and battery included frameworks are typically really overkill for most jobs. But the stuff is there, saying Golang is hard because it’s lacking in frameworks is just wrong.
@cabanford
@cabanford 3 ай бұрын
Now if only someone could terminate the disaster that is CSS and replace it with something that WORKS - we'd be all happy 😊
@awesome-coding
@awesome-coding 3 ай бұрын
Call me crazy, but I actually like CSS 😅
@techs7296
@techs7296 Жыл бұрын
Seems we will complete the circle. Html css js to MVC to SPA to SRA to html css js
@awesome-coding
@awesome-coding Жыл бұрын
Try, fail, learn 😅
@TechBuddy_
@TechBuddy_ Жыл бұрын
But this time with better client side reactivity without a billion gigs of js
@dagorgonzoladotco
@dagorgonzoladotco Ай бұрын
❤ htmx
@pss_crs
@pss_crs Жыл бұрын
this stack is 😘, please do alot of go content
@awesome-coding
@awesome-coding Жыл бұрын
More Go content to come!
@soundrightmusic
@soundrightmusic Жыл бұрын
love it
@TechBuddy_
@TechBuddy_ Жыл бұрын
Heyy the new animations are cool I love em ❤ Only thing I will suggest is make the videos as dense as possible but don't save that extra 30 seconds man show the f ing output 😅
@awesome-coding
@awesome-coding Жыл бұрын
I agree - I dropped the ball on this one 😅🤦‍♂️
@jd4codes
@jd4codes 11 ай бұрын
Beautiful!
@awesome-coding
@awesome-coding 11 ай бұрын
Thank you! Cheers!
@bobweiram6321
@bobweiram6321 11 ай бұрын
The guy on the thumbnail looks like he needs more fiber.
@awesome-coding
@awesome-coding 11 ай бұрын
Classic!
@techs7296
@techs7296 Жыл бұрын
Im getting f**** hearing a new stack every single week
@awesome-coding
@awesome-coding Жыл бұрын
I believe you.
@emerelle3535
@emerelle3535 3 ай бұрын
I wonder how those server-event stuff works and If I can do that with php.
@bsljth
@bsljth 2 ай бұрын
We need CSS-in-Go. 😂
@scott_mckendry
@scott_mckendry Жыл бұрын
The HUG stack 🥰
@awesome-coding
@awesome-coding Жыл бұрын
Haha nice! I missed a good thumbnail opportunity 😅
@patrickren7395
@patrickren7395 11 ай бұрын
Simplicity is great, how about powerfullness? For instance, components & rich interactivity. React is a library but usually it's self hosted after bundling, seems there's no bundling support in htmx & I have to include a script that points to a MDN source?
@Chisegh
@Chisegh 10 ай бұрын
You have partials for server rendered apps, which are essentially components. Interactivity works great in HTMX. The difference to frontend frameworks like react is that it is server driven instead of relying on client state. You can download the MDN file and include it as a static file in your project, no need to bundle it.
@grinsk3ks
@grinsk3ks Жыл бұрын
I don't really care what language to use. In my opinion a good stack is when you write your component once. Writing it in BE land for ssr and a second time in JS for interactivity sucks.
@awesome-coding
@awesome-coding Жыл бұрын
Good point!
@MikeNugget
@MikeNugget Жыл бұрын
Waiting for UnoCSS UI kit video 😊
@phoenicianathletix2866
@phoenicianathletix2866 Жыл бұрын
UnoCSS vs picocss for fastest minimal CSS no JS dependencies?
@massy-3961
@massy-3961 Жыл бұрын
Wow the random Fiber drop is surprising
@awesome-coding
@awesome-coding Жыл бұрын
Trying to mix things up a bit :D
@hadavid2454
@hadavid2454 Жыл бұрын
I am trying to use the Fetch command in go, but it is undefined for me. Anyone know what the issue might be?
@TedoHamTole
@TedoHamTole Жыл бұрын
more content on this stack please.
@awesome-coding
@awesome-coding Жыл бұрын
More to come!
@flipflap4673
@flipflap4673 11 ай бұрын
Nice! How do you prevent end users from modifying the htmx code?
@awesome-coding
@awesome-coding 11 ай бұрын
Hey! I guess you have the same constraints as you would with a SPA. The HTML is served from the server (preferably already sanitised) The user might change that HTML, but your server will still perform validations and make sure the requests are valid when interacted with the page.
@eduardolagoeiro1810
@eduardolagoeiro1810 11 ай бұрын
How do you recommend to componentize the html in go? I think go/html is missing a lot of tooling (great IDE integration, create and use components, typing, etc...)
@paullachaud1689
@paullachaud1689 10 ай бұрын
Look into templ
@Chisegh
@Chisegh 10 ай бұрын
The idea of partials, which are essentially components, has been around in server rendered apps for decades.
@jorgeguberte
@jorgeguberte 11 ай бұрын
Remember, folks: KISS! Rock OOOOOOON!!! ✌✌
@vasiovasio
@vasiovasio Жыл бұрын
This type of behavior can be easily achieved with Unpoly too.
@awesome-coding
@awesome-coding Жыл бұрын
Didn't know about this one - thanks for the suggestion!
@scarlatum
@scarlatum Жыл бұрын
So, PHP but worse?
@awesome-coding
@awesome-coding Жыл бұрын
😂 can there be something worse than PHP?
@wikittywhacktv
@wikittywhacktv Жыл бұрын
i don't get why people are mad about new tools and tech stacks coming out... nobody is forcing you to use them, you can stick with you own tools and let people who love to try new things have their fun!
@awesome-coding
@awesome-coding Жыл бұрын
You are 100% right. To each his own!
@boldandbrad
@boldandbrad 4 ай бұрын
what font are you using in your code screencaps?
@awesome-coding
@awesome-coding 4 ай бұрын
Hey! That's the default IDE theme from IntelliJ IDEA
@allan_archie
@allan_archie Жыл бұрын
My gut doesn't like htmx.
@awesome-coding
@awesome-coding Жыл бұрын
Why is that? :D
@hereallyfast
@hereallyfast Ай бұрын
I'm lowkey out on a-h/TEMPL
@owenwexler7214
@owenwexler7214 7 ай бұрын
Is there any way to self-host the HTMX and UnoCSS packages? Would rather not rely on a CDN for this. Thanks in advance!
@awesome-coding
@awesome-coding 7 ай бұрын
Sure thing - you can easily download them locally, and pack them with your application.
@axelramirezludewig306
@axelramirezludewig306 Жыл бұрын
Bro, this is how they made websites back in the 2008 days, what the actual fk.
@awesome-coding
@awesome-coding Жыл бұрын
We call this "progress"!
@axelramirezludewig306
@axelramirezludewig306 Жыл бұрын
​@@awesome-coding Yeah, at least coming from oldschool PHP I can recognize all this patterns lol, btw do you recommend go fiber?
@awesome-coding
@awesome-coding Жыл бұрын
@@axelramirezludewig306 Fiber has great DX, especially if you are coming from the NodeJS / Express world. Go has a bunch of other great advantages, so, all in all, it's a pretty good option if you are not "married" with another framework already.
@skthevillagecoder
@skthevillagecoder Жыл бұрын
Where is the demo of the project ?😢
@awesome-coding
@awesome-coding Жыл бұрын
Sorry - there isn't one :( I'm working on a more in depth video with this stack, and I'll make that project public.
@melanovapedia7924
@melanovapedia7924 Жыл бұрын
Thanks, but I personally prefer you use default pkg golang. I am newbie.
@awesome-coding
@awesome-coding 11 ай бұрын
Fair enough!
@KrishnanshAgarwal
@KrishnanshAgarwal 8 ай бұрын
which editor and OS you use ?
@DanelonNicolas
@DanelonNicolas Жыл бұрын
ok. you got me. it is a wonderful video but where is the repo?
@awesome-coding
@awesome-coding Жыл бұрын
No repo for this one - sorry 🫠 I'm working on an extend version for this stack, and I'll make that project available on GitHub.
@MarkPanado
@MarkPanado Жыл бұрын
Why not just load the CSS file directly? Instead of calling it first via JavaScript 4:25
@WilsonSilva90
@WilsonSilva90 11 ай бұрын
Where are ApiKey, Fetch and Stock defined?
@awesome-coding
@awesome-coding 11 ай бұрын
Hey! in this specific small example you could save them in the stocks.go file. In a larger project, I would advise storing Fetch and Stock under a "domain" directory, which will contain all your domain related types. The ApiKey should be stored in a properties file.
@djthdinsessions
@djthdinsessions 10 ай бұрын
**OWASP Top 10 has entered the room** 🤣
@awesome-coding
@awesome-coding 10 ай бұрын
ha! I posted a video about Auth JS where I was complaining that auth & security are really hard. And then this guy wrote a comment saying Auth is not hard at all. It's not hard until the first security audit 😅
@djthdinsessions
@djthdinsessions 10 ай бұрын
@@awesome-coding Or until you dont do audit at all and then got hacked suddenly 🤣
@Kats0unam1
@Kats0unam1 Жыл бұрын
Why not Go std lib, htmx and tailwind?
@awesome-coding
@awesome-coding Жыл бұрын
Isn't Fiber's DX a bit better?
@nanonkay5669
@nanonkay5669 11 ай бұрын
​@@awesome-codingGo devs normally swear by the standard lib lol. But you should do a video that uses the Go + HTMX + Tailwind/UnoCSS + Alpine.js
@RobertFletcherOBE
@RobertFletcherOBE 6 ай бұрын
fiber is slightly faster, but std would be a good choice too.
@harryphillipsdev
@harryphillipsdev Жыл бұрын
PHP with Laravel Livewire needs the same if not more of the attention that HTMX is getting
@awesome-coding
@awesome-coding Жыл бұрын
Thanks for the suggestion! I'll give it a try!
@sujezz
@sujezz Жыл бұрын
@@awesome-coding I'd say you should start with Symfony. Laravel, phpbb and others straight up include base of Symfony (request/response classes) and sometimes more. I get that Laravel is shiny and stuff. But being recently myself at php conference in EU there's been 0 talk about laravel and only symfony. This conference was like 1.5-2k people. 2 weeks later was laravel conf with like 29 ppl interested on fb...
@hasukoorachi1505
@hasukoorachi1505 Жыл бұрын
Phoenix with LiveView too !
@TechBuddy_
@TechBuddy_ Жыл бұрын
Yeah they are amazing I have used them but the only problem is I can't use go or rust or any other backend language soooooo ( I hate to say this 😅 ) it depends on the use case
@can_pacis
@can_pacis Жыл бұрын
It’s PHP tho 🤢
@hoccoban
@hoccoban 8 ай бұрын
I think go-chi is a better choice.
@awesome-coding
@awesome-coding 8 ай бұрын
You might be right - I don't have any experience with chi, but I'll look into it.
@aduntoridasful
@aduntoridasful 11 ай бұрын
unocss, picocss or tailwindcss?
@awesome-coding
@awesome-coding 11 ай бұрын
It's not much of a difference to be honest. It's mostly a matter of the DX you prefer. For big / established projects you should probably go with Tailwind since it is the most established.
@1998goodboy
@1998goodboy 11 ай бұрын
where's the git repo? 🤔
@Randomguy48279xyz
@Randomguy48279xyz 11 ай бұрын
👍
@geelemo
@geelemo Жыл бұрын
How do you componentize in htmx
@matthiaslangbart9841
@matthiaslangbart9841 11 ай бұрын
On the frontend? You don't have to. All you do in HTMX is send a request, expect HTML, maybe with further HTMX included, and replace the content of an identified container with the new HTML, or prepend / append the new HTML to the existing HTML in that container. At the end of the day it's what you request that defines the HTML you receive.
@geelemo
@geelemo 11 ай бұрын
@@matthiaslangbart9841 it's going to be too much code in one file
@abdelhameedhamdy
@abdelhameedhamdy 11 ай бұрын
why uno and not tailwind css !
@awesome-coding
@awesome-coding 11 ай бұрын
Tailwind CSS could work for certain as well!
@Microphunktv-jb3kj
@Microphunktv-jb3kj 9 ай бұрын
wonder if htmx is made by the same people who made underscore and lodash? same white/blue theme :DD always makes me think if thoies are invented by finns/estonians lol ; )
@knolljo
@knolljo 10 ай бұрын
A classless CSS-Framework would be even more minimal
@awesome-coding
@awesome-coding 10 ай бұрын
A no class, no css CSS Framework :D
@zayttoven
@zayttoven Жыл бұрын
Its all good until fiber... Go was designed to be useful with the std lib and if needed, 3rd party libs. Frameworks, especially fiber, are an overkill to such a language like go.
@Stefan-bs6ty
@Stefan-bs6ty 10 ай бұрын
Now just dump UnoCSS, use plain and proper CSS and good HTML markup, and we're back on the effectiveness track. 😅
@awesome-coding
@awesome-coding 10 ай бұрын
Fair enough 😂
@Stefan-bs6ty
@Stefan-bs6ty 10 ай бұрын
@@awesome-coding Rereading my comment, it sounds more harsh than planned. 🫢 However I really meant it: Maybe try good markup and CSS next time, too? Markup for the WHAT, and CSS for the HOW. The goal is to make the markup fully separated from layout and design.
@krellin
@krellin 7 ай бұрын
after 20 years of garbage frameworks and tools people finally figure out what backend is supposed to do and what frontend is supposed to do i thought it will never happen
@seanknowles9985
@seanknowles9985 Жыл бұрын
Can we create PWA with htmx?
@awesome-coding
@awesome-coding Жыл бұрын
Sure thing!
@seanknowles9985
@seanknowles9985 Жыл бұрын
@@awesome-coding would be ace to get a tutorial on the golang htmx example.
@grantfarwell425
@grantfarwell425 Жыл бұрын
Is there a github for this?
@awesome-coding
@awesome-coding Жыл бұрын
Sorry - it isn't :( I'm working on a more in depth video with this stack, and I'll make that project public.
@ParanoYa1117
@ParanoYa1117 11 ай бұрын
I wonder how one can put so much work into such a video and not provide the full source code... If you follow this tutorial step by step, your code is just not going to work, because the creator left out some details in the implementation... I found it sketchy from the beginning, that the resulting site was never shown... Really strange, since the video in itself is made pretty well and has a fast pace, so you don't waste time with useless explanations
@awesome-coding
@awesome-coding 11 ай бұрын
Hey! Thanks for reaching out. I spent a bit of time recreating the code. Here is the GitHub url - github.com/awesome-club/htmx-go. Hope this helps! :)
@KhaledKimboo4
@KhaledKimboo4 11 ай бұрын
There is more code in your node_modules folder than the entire linux code base.... to print hello world
@awesome-coding
@awesome-coding 11 ай бұрын
While this might be true in most cases, you picked one of the only videos where I created a project without a node_modules folder :)) On top of that, this is a pretty irrelevant metric as long as the build time is really snappy, and the output delivered to the browser in the end is small.
@KhaledKimboo4
@KhaledKimboo4 11 ай бұрын
@@awesome-coding you didn't get my point, I'm in favor of htmx, I'm using it currently in all my projects, node_modules are what htmx replaces . Love your content, keep up 👌
@awesome-coding
@awesome-coding 11 ай бұрын
@@KhaledKimboo4 Ah, got it now - sorry about the misunderstanding. Thanks for the feedback!
@thedelanyo
@thedelanyo Жыл бұрын
I'll not write htmx and tailwind css together 😅😅😅
@awesome-coding
@awesome-coding Жыл бұрын
:)) why?
@abhishekbu1087
@abhishekbu1087 Жыл бұрын
How is jwt authentication handled using htmx?
@XXnickles
@XXnickles Жыл бұрын
You will be looking for back-end authentication. Perhaps you don't even need jwt depending on your back-end
@ashleyfreebush
@ashleyfreebush Жыл бұрын
Omg kill me now😂
@vice-108
@vice-108 Жыл бұрын
Bend over then
@bobweiram6321
@bobweiram6321 11 ай бұрын
The reason for the extreme proliferation of JavaScript frameworks is due to the unpleasant nature of JavaScript programming. What developers really want is an alternative to JavaScript, not another framework. It's why there's so much excitement over Webassembly.
@EricDBrown
@EricDBrown 7 ай бұрын
You lost me at Go Fiber.
@awesome-coding
@awesome-coding 7 ай бұрын
😅 it is not that bad.
@vyrekxd4971
@vyrekxd4971 Жыл бұрын
chi + base go http >>>
@ooogabooga5111
@ooogabooga5111 11 ай бұрын
Its so stupid lmaoo, they wrote js for you. Doesn't mean you have a better performing website. xD
@ukrainetoday960
@ukrainetoday960 10 ай бұрын
Go is easy? Lol what???))
@awesome-coding
@awesome-coding 10 ай бұрын
Isn't it?
@ukrainetoday960
@ukrainetoday960 10 ай бұрын
@@awesome-codingNope - python, js, php, maybe Ruby is easy - golang is not easy language
@awesome-coding
@awesome-coding 10 ай бұрын
@@ukrainetoday960 I'm guessing it's all relative then. I would definitely put Go in the "easy" category, but yes, compared to JS any language would be considered "difficult"
@ug1131
@ug1131 Жыл бұрын
Htmx is totally a good choice but still has some security issues (xss), I hope the team behind it get it all working
@hasukoorachi1505
@hasukoorachi1505 Жыл бұрын
It doesn't have any issue with XSS since it's your server responsibility to sanitize the returned HTML You can also simply use the CSP header which is a native protection against those types of attacks HTMX will just put the received HTML where you want it, so there is no security issue if the received HTML is already secured
@seancooper5007
@seancooper5007 Жыл бұрын
Just don't return unsanitised user input and your good go. You do need to remember to implement CSRF though.
@awesome-coding
@awesome-coding Жыл бұрын
@hasukoorachi1505 exactly!
@ug1131
@ug1131 Жыл бұрын
@@hasukoorachi1505 I wouldn't really label it as an "issue" but something like react ensures by default that no html or js will be evaluated, still my point of view and what you just suggested is also worth noting, thanks btw
@sourabhsingh4515
@sourabhsingh4515 7 ай бұрын
another tool creating unnecessary buzz among new developers 🤦‍♂🤦‍♂. I do think this tool can be useful if you want to create a small scale application as various of the important features are missing from this tool like error handling and etc and even if they are they are not as easy as the traditional try/catch in js or js frameworks and it is very crucial tha in the production level you can understand code and can change it very easily if required but if we use this tool in any large scale application like any social media platform application, it would be a huge mess writing 5-6 lines only filled with single html tag and we will be writing comments more than the actual code as the code readability will be a major issue. First of all you are trying to say that the web can work without js which is completly bs and just a stratergy to create a buzz among the lazy newbie deevlopers and nothing. I think this tool can do very good in it's own level but the audience it targeting and the kind of stratergy it is using to make it popular is not good and will result in bad outcome in a long run. That's what I think, your openion can be completely different and I always respect a different valid openion until and unless you are just a fanboy or a hater. 😄
tRPC, gRPC, GraphQL or REST: when to use what?
10:46
Software Developer Diaries
Рет қаралды 78 М.
A Jr Dev For Life?? | Prime Reacts
21:33
ThePrimeTime
Рет қаралды 293 М.
My Cheetos🍕PIZZA #cooking #shorts
00:43
BANKII
Рет қаралды 25 МЛН
黑天使遇到什么了?#short #angel #clown
00:34
Super Beauty team
Рет қаралды 41 МЛН
Bony Just Wants To Take A Shower #animation
00:10
GREEN MAX
Рет қаралды 7 МЛН
The HATE Stack - Simple and Efficient
8:17
Awesome
Рет қаралды 55 М.
HTMX: 3 IRL Use Cases
18:33
ThePrimeTime
Рет қаралды 113 М.
HTMX Sucks
25:16
Theo - t3․gg
Рет қаралды 118 М.
FastHTML in 2 Minutes
2:00
PEXT
Рет қаралды 8 М.
The Right Way To Build REST APIs
10:07
Awesome
Рет қаралды 92 М.
HTMX & Go with ThePrimeagen | Preview
15:58
Frontend Masters
Рет қаралды 151 М.
r/webdev BANS HTMX??
5:28
ThePrimeTime
Рет қаралды 148 М.
HTMX for Impatient Devs
8:33
Isaac Harris-Holt
Рет қаралды 51 М.
Introducing The GoTTH Stack - Go, Tailwind CSS, Templ & HTMX
28:29