Тёмный

Developers Do NOT Understand the POWER Of HTMX 

Anthony GG
Подписаться 57 тыс.
Просмотров 7 тыс.
50% 1

► 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
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝

Опубликовано:

 

5 апр 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 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 Месяц назад
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
@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.
@hjnp
@hjnp 2 месяца назад
💯 agree
@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 Месяц назад
.. 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 20 дней назад
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
This Will Make Everyone Understand Golang Interfaces
21:03
Clean Code is SLOW But REQUIRED? | Prime Reacts
28:22
Просмотров 270 тыс.
3 Golang Tips For Beginners I Wish I Knew Sooner
13:18
Astro 4.10: Accelerating content site development
14:41
You don't need a frontend framework
15:45
Просмотров 96 тыс.
Why HTMX and Golang? The answer might surprise you...
12:04
Jeremy McPeak's Larabits - HTMX May Be All You Need
15:22
A Practical Example How To Use Interfaces In Golang
14:42