Developers Do NOT Understand the POWER Of HTMX

  Рет қаралды 7,117

Anthony GG

Anthony GG

2 ай бұрын

► Join my Discord community for free education 👉 / discord
► Exclusive Lessons, Mentorship, And Videos 👉 / anthonygg_
► 33% OFF on my Go + HTMX + Templ Course PRESALE 👉bit.ly/3UFruxO
► Enjoy a 60% Black Friday Discount on My Golang Course 👉 fulltimegodev.com
► Learn how I became a self-taught software engineer 👉fulltimegodev.com/#mystory
► Follow me on Twitter 👉 / anthdm
► Follow me on GitHub 👉 github.com/anthdm
Grab yourself a 33% OFF on the PRESALE event of my building production ready applications with GO + HTMX + Templ + Tailwindcss + JQuery course here: bit.ly/3UFruxO
SUBSCRIBE OR NO MARGARITAS
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝

Пікірлер: 64
@anthonygg_
@anthonygg_ 2 ай бұрын
► 33% OFF on my Go + HTMX + Templ Course PRESALE bit.ly/3UFruxO ► Join my Discord community for free education discord.com/invite/Ac7CWREe58 ► Exclusive Lessons, Mentorship, And Videos www.patreon.com/anthonygg_ ► 60% OFF on my Golang course fulltimegodev.com Thanks for watching
@JT-mr3db
@JT-mr3db 2 ай бұрын
HTMX is so absurdly simple that it threatens developers who are used to complex technical masturbation. It's pretty remarkable how far you can get with HTMX without needing a heavy UI framework.
@pythonantole9892
@pythonantole9892 2 ай бұрын
One major problem with the web dev industry is that we have successfully been brainwashed to believe that if something is simple then its wrong, has a catch, is not secure, not safe etc etc. We now believe that a good solution must be complicated. We have developers building websites or apps that will never have more than 10,000 users saying they can't use technology X because technology X can't scale. We have become idiots. I did a Laravel + Livewire site to replace one that was aging and full of bugs from one of those frameworks that gets a new release every time it rains and "senior developers" kept asking how i pulled it off without React. It's like you can't build anything unless you use some hippy shiny, complicated and over engineered tool.
@anthonygg_
@anthonygg_ 2 ай бұрын
Amen!
@roccociccone597
@roccociccone597 2 ай бұрын
As a guy who hates Js and doesn’t like the whole frontend bs, HTMX is a god send. I can finally make highly reactive apps without or very little JS. I love it.
@coffeeintocode
@coffeeintocode 2 ай бұрын
Same. Well said bro 👊
@511cvxzlugynskii3
@511cvxzlugynskii3 Ай бұрын
backends love it, frontend devs are trembling scared to death of losing their precious painting jobs
@amadeusm.7108
@amadeusm.7108 2 ай бұрын
I strongly agree, why has everything to be so complicated today. The little Timmies don't even know about the olden ways. XHR, SOAP, etc. and NEVER trust the CLIENT.
@manfrombritain6816
@manfrombritain6816 2 ай бұрын
fucking soap
@vitiok78
@vitiok78 2 ай бұрын
HTMX is literally just HTML forms at its core. If you are a web developer and you don't know how to sanitize data coming from HTML forms you should be fired immediately...
@anthonygg_
@anthonygg_ 2 ай бұрын
See, we share the same opinions. Unless its error handling from http handlers 😂
@vitiok78
@vitiok78 2 ай бұрын
@@anthonygg_ It is boring when all have the same opinions on everything)
@rodjenihm
@rodjenihm 2 ай бұрын
How can I know that when I use 17 abstractions on top of it?
@vitiok78
@vitiok78 2 ай бұрын
​@@rodjenihmGit good)
@MrEnsiferum77
@MrEnsiferum77 2 ай бұрын
I don't know how to sanitize html, but I know, design patterns, domain driven design, data structures etc... should I be fired?
@picatchumm64
@picatchumm64 2 ай бұрын
Good morning, I agree, what is missing in my opinion are opensource examples of projects a little more complex than POCs, to see the full potential of HTMX, and for it to really take off.
@Qixiano
@Qixiano 2 ай бұрын
What about CSRF protection? Could you share an example implementing this protection? Thanks
@jeffreysmith9837
@jeffreysmith9837 Ай бұрын
You can use hx-vals or hx-headers to send the csrf token
@eduardabramovich1216
@eduardabramovich1216 2 ай бұрын
Anthony, have you tried Elm before? If not, would you consider exploring the language in one of your videos?
@damien309
@damien309 2 ай бұрын
Well yes you must validate and sanitize user inputs, but that won’t guarantee your site is XSS proof. Not to mention that sanitizing for database storage is not the same as sanitizing for html output. The potential attack vector for XSS attacks is quite large actually.
@licokr
@licokr Ай бұрын
They may get a wrong idea coming from updating the whole html of htmx. The point is that the frontend is cooperation with a trustful team member, not with a stranger. If you're working with go, templ and they're one proj. Sanitization is supposed to be done from the server side. Nowadays, there are lots of double works by dividing two sides, frontend and backend. It might be needed depending on some factors, teams, people or whatever. I guess there might be some projects sanitization is done in front side and the api responses then the full data, maybe that's why they think that, you know they only see onside..or they're just confused the concept. I could imagine one situation, the backend is broke down by some hacks and the code was changed and responded the vulnerable code to the clients. Somehow, the frontend code is saved, only the backend is broke down. Let's say the two parts were dividing from different servers. Hmm.... then ja maybe... If you‘re writing the whole code in a project like golang templ stack, it would not be consideration though. Let's say there are pure htmx client project and go lang server... somehow the server is broken and some body changed the code to hijacking clients' data without them knowing. So.. vulnerable html code is loaded to client's side and they're hacked and no body knows... and could say it's XSS vulnerability..... no.. it's wrong from the first place. There are so many considerations cause it's already broke down it's not about htmx, it's the problem regarding security. I made myself complicated lol. Thanks for the video. I subscribed 👍 I was thinking of using htmx for the next project and that you've done your service with htmx gives me a lot of trust to htmx. Thanks! I will go look for a Mcdonald's job.
@Caranthir23
@Caranthir23 2 ай бұрын
My man casually leaks creds
@anthonygg_
@anthonygg_ 2 ай бұрын
You can help debug the staging with us now
@dulranga_2
@dulranga_2 Ай бұрын
cheers grandma!!
@zevo92
@zevo92 2 ай бұрын
I love the brutal honesty:X
@javadahmadian7782
@javadahmadian7782 2 ай бұрын
💯 yeah that's right
@RA-xx4mz
@RA-xx4mz 2 ай бұрын
I’ve been using HTMX/Templ/Golang to construct an MVP for an ad tech platform. It’s a very clean way to make things. It’s nice not to have to write a whole state management cycle. If I want to update something, I can update it and just target the dom element I want to swap with the new data. You forgot the hx-trigger on the button btw. :p
@SandraWantsCoke
@SandraWantsCoke 2 ай бұрын
Hey, can you tell me: I have huge troubles with auto imports into templ files (I need types for the props the component receives). They basically almost never work. I have to literally type them in manually. It's just pain in the azz to use it seems. Did you have a similar experience?
@RA-xx4mz
@RA-xx4mz 2 ай бұрын
@@SandraWantsCoke auto imports are handled by your editor. Make sure you have the right plugins installed to help with that. I have trouble with some auto imports because I have similarly named packages/subpackages. Not always a problem, but sometimes. 🤷‍♀️
@SandraWantsCoke
@SandraWantsCoke 2 ай бұрын
@@RA-xx4mz I have the right tools installed, I only have problems inside .templ files. They are not .go files and hence are probably handled differently? And I've had these problems on different machines
@RA-xx4mz
@RA-xx4mz 2 ай бұрын
@@SandraWantsCoke Couldn’t really tell you. 🤷‍♀️
@manfrombritain6816
@manfrombritain6816 2 ай бұрын
"why are you going to over-complicate it?" cos of the people who pay for the product and the people who pay the salaries 😂
@doichev-kostia
@doichev-kostia 2 ай бұрын
But we’re doing the same thing right now. The API sends you JSON, you map the data to JS objects with a fancy name JSX, and then in runtime those JS objects are inserted in DOM as HTML elements Same thing, but with quite some steps :) You can send CSV files from the API, if your client can handle it, the question is why?
@naranyala_dev
@naranyala_dev Ай бұрын
req: in-depth htmx and golang
@hjnp
@hjnp 2 ай бұрын
💯 agree
@axMf3qTI
@axMf3qTI 2 ай бұрын
Htmx is not that hard to understand. It's like html frames back in the days.. have the nav in one frame and have it load the content in an other frame by doing a get request.
@jugurtha292
@jugurtha292 2 ай бұрын
what if someone’s purpose to attack the client not the server?
@Ry4nWTF
@Ry4nWTF 2 ай бұрын
tf u mean attack the client?? google chrome??
@damien309
@damien309 2 ай бұрын
With XSS attacks, the client is the main target
@jugurtha292
@jugurtha292 2 ай бұрын
Clients are the main target of xss attacks not servers
@nick_ap
@nick_ap 2 ай бұрын
That is very interesting, thanks, Anthony
@brickmastertube
@brickmastertube 2 ай бұрын
5:47 😂😂😂
@anticaleksandar8708
@anticaleksandar8708 2 ай бұрын
Hi Anthony, youre not 100% right about xss, its not only the Backend that need so be safe. Can we make a deal, i will teach you xss techniques and you can teach me Golang interfaces. 🤗 best regards, Aleks
@anthonygg_
@anthonygg_ 2 ай бұрын
Deal
@pythic-nl
@pythic-nl 2 ай бұрын
.. it's time to get back to the MC Donalds job ... hahahaha ... lekker man ..
@Omniwoof
@Omniwoof 2 ай бұрын
McDonald's said they won't take me back. :(
@anthonygg_
@anthonygg_ 2 ай бұрын
The bastards
@Grahamaan27
@Grahamaan27 2 ай бұрын
HTMX is just another framework you have to learn that is more limited than JavaScript. I'm personally just fine with lightly using JavaScript in my projects and not worrying about 3rd party imports
@jibreelkeddo7030
@jibreelkeddo7030 25 күн бұрын
I love HTMX too, but you are being a little too dismissive of the XSS risk. You can deploy the safest possible backend API sanitizer today in 2024, retire tomorrow, and then have 20 XSS exploits discovered about your backend of choice in the next year leading to all of your customers having their payment information stolen and ruining your business. I hope we can start seeing more advanced client-side security validation features for future versions HTMX.
@krispekla
@krispekla 2 ай бұрын
HTMX is definitely powerful but! I still cannot recommend it because of whole UI libs that exist in React, Vue etc. ecosystem that make my life easier as I don't want to write everything from scratch (I don't think here about simple cmpnts like btns, inputs but more complex, see for example prime-react lib ).
@steven11101010
@steven11101010 2 ай бұрын
Do you have examples of the UI libs that make your life easier? I'd wager they make your life easier because you are using React in the first place. Whereas, if you don't use it, you won't need a lib to fix its unnecessary complexity.
@krispekla
@krispekla 2 ай бұрын
@@steven11101010 I mentioned prime react for ui lib. I am not fond of implementing autocomplete, date-pickers, table etc. I much prefer out of the box sane defaults + creating wrapper components. I am interested in htmx, how would you approach creating all this components if you don’t have much time, lets say autocomplete
@meyou118
@meyou118 2 ай бұрын
a script hijacks "hx-get"?
@WinterWeaver
@WinterWeaver 2 ай бұрын
How are you going to get that script into the page? no. 1 rule of thumb is to never trust user data, which is why we sanitize on the backend.
Golang Channels Or Wait Groups? Let Me Explain.
18:32
Anthony GG
Рет қаралды 17 М.
Async Rust Is A Bad Language | Prime Reacts
28:46
ThePrimeTime
Рет қаралды 86 М.
We Got Expelled From Scholl After This...
00:10
Jojo Sim
Рет қаралды 23 МЛН
В ДЕТСТВЕ СТРОИШЬ ДОМ ПОД СТОЛОМ
00:17
SIDELNIKOVVV
Рет қаралды 3,8 МЛН
Why HTMX and Golang? The answer might surprise you...
12:04
Flo Woelki
Рет қаралды 2,6 М.
A Practical Example How To Use Interfaces In Golang
14:42
Anthony GG
Рет қаралды 18 М.
How Slow Is JavaScript? | Prime Reacts
15:34
ThePrimeTime
Рет қаралды 170 М.
You don't need a frontend framework
15:45
Andrew Schmelyun
Рет қаралды 100 М.
5 Signs of an Inexperienced Self-Taught Developer (and how to fix)
8:40
Why Golang's IO.READER Is More Important Than You Think
6:38
Anthony GG
Рет қаралды 11 М.
HTMX: What's Old is New Again
11:18
CodeOpinion
Рет қаралды 13 М.
I'm Coming Around To Go...
21:33
Theo - t3․gg
Рет қаралды 100 М.
This is Why Programming Is Hard For you
10:48
The Coding Sloth
Рет қаралды 603 М.
Beginners Should Think Differently When Writing Golang
11:35
Anthony GG
Рет қаралды 93 М.