Node.js Doesn’t Suck Anymore

  Рет қаралды 133,403

Web Dev Simplified

Web Dev Simplified

Күн бұрын

Пікірлер: 336
@Lu-Die-MilchQ
@Lu-Die-MilchQ 4 ай бұрын
Node really shows how important competition is. They were stalled for quite some time until Bun (and Deno) started kicking their ass
@RustIsWinning
@RustIsWinning 4 ай бұрын
@@Lu-Die-MilchQ True but only one runtime can win which is Deno 🦕
@azreow
@azreow 4 ай бұрын
​@@RustIsWinning Leave it to someone with a Rust logo and a Rust icon to say some crap like this. U derdogs no matter what. God forbid other tools have uses. 🙄
@nel_tu_
@nel_tu_ 4 ай бұрын
​@@RustIsWinningbrother is bouncing on it
@RustIsWinning
@RustIsWinning 4 ай бұрын
@@nel_tu_ I'm bouncing on what?
@Lu-Die-MilchQ
@Lu-Die-MilchQ 4 ай бұрын
@@nel_tu_ yea ignore him. He is a troll.
@dgdev69
@dgdev69 4 ай бұрын
Man, I can't believe this. I don't need karma, jasmine, nodemon, as dependencies. This is great first step. Great job node js team, Keep rocking. One day I will commit to nodejs.
@Ahmedhkad
@Ahmedhkad 4 ай бұрын
Why its great!, are dependencies bad?
@dgdev69
@dgdev69 4 ай бұрын
@@Ahmedhkad it creates a config hell, and upgrading is hard. Good defaults are better. Most of the people who use karma test runner don't know what their config does. People simply copy paste config either internally or from online
@drugoviic
@drugoviic 4 ай бұрын
@@Ahmedhkad yeah, you don't need to bloat your application with dozens of third party packages, it makes maintaining the project long term a headache
@essaadi_elmehdi6784
@essaadi_elmehdi6784 4 ай бұрын
It's crazy that Node js didn't support those important featuress before
@user-abc855
@user-abc855 4 ай бұрын
Please tell me why you think, that native support for TS for example is so important for you? If you want to achieve a functionality like "IDE checks types" and "Node just strips types and runs JS to make it faster " you can achieve the same with TS compilation with SWC
@theseangle
@theseangle 3 ай бұрын
​@@user-abc855 less dependencies = less problems and less sources of potential security threats
@Dariansweb
@Dariansweb 4 ай бұрын
Brother.. man, my jaw started dropping when the debugger was talked about and then when the sqllite features were brought up I had to reach down and pick my jaw up off the floor. Amazing features coming! thanks, my friend :)
@brawlforpro4324
@brawlforpro4324 4 ай бұрын
I need this humor
@zeocamo
@zeocamo 4 ай бұрын
this is not new, i use it for years.
@Dariansweb
@Dariansweb 4 ай бұрын
@@zeocamo good for you :) it's new to me, sorry i'm just a newb and glad you took time to reply to me.
@boot-strapper
@boot-strapper 4 ай бұрын
Thank bun, they had all of this and more over a year ago
@j________k
@j________k 4 ай бұрын
I love that it works as a single executable binary now. Been shipping binaries for months now
@jerrygreenest
@jerrygreenest 3 ай бұрын
11:58 «it should give me all the different files, let's give it a quick run, and it looks like it uses a generator, so we get the next one, which is the first one, and we run this again, and it returned us a promise, it looks like the glob itself isn't a promise, but getting next one is, so we now throw an await right here, remove there, and viola, we got the value» My exact JavaScript experience.
@vainglories7512
@vainglories7512 3 ай бұрын
Ahaha
@niZmosis
@niZmosis 4 ай бұрын
I bet in 3 years from now, this is still all experimental just like all the other stuff that has been stuck in the experimental state. So for a production app, it's just a tease of "what it could have been", and we'll just continue doing things the old way. --experimental-modules anyone? Yea that's been stuck in experimental for over 5 years, and would super useful for so many people. Other one that comes to mind is "--experimental-json-modules", like cmon, finish something before making other never to be finished features.
@krskvBeatsRadio
@krskvBeatsRadio 4 ай бұрын
Isn’t the flags you mentioned are all deprecated and replaced with modern non experimental features? ESM is supported with no flag, json can be loaded with loaders which are RC now
@ShaunEk1
@ShaunEk1 3 ай бұрын
Excited that node is catching up but honestly not going to use all these experimental features until they are no longer experimental.
@tsooooooo
@tsooooooo 4 ай бұрын
SO much overdue quality of life stuff! Great summary thanks
@Bozon671_Higgs
@Bozon671_Higgs 4 ай бұрын
Great to see that Node finally gets features that have been available in it's competitors (like Deno or Bun) for years. There was no reason for Node not to have them, except for it's dev team being rigid. Now it will be harder for alternative runtimes to compete
@pomademahal
@pomademahal 4 ай бұрын
Noob here, is Deno better than NodeJS?
@ertayl7549
@ertayl7549 4 ай бұрын
​@@pomademahalIt is good but I believe there it no "better" choice. However I would be waiting for Deno 2.0 before coding something for Deno
@MordyDeep
@MordyDeep 4 ай бұрын
@@pomademahal o mercado usa node, não adianta
@ColinRichardson
@ColinRichardson 3 ай бұрын
The reason the method is called 'it' is to help allow the test method be named better.. eg, `it('should use default parameters', ....)` and `it('should fail with a negative number', ...)`
@bansh3ee
@bansh3ee 12 күн бұрын
I thought the world has moved from the "should" constant already. it('uses..'), it('fails...') ...
@ColinRichardson
@ColinRichardson 11 күн бұрын
@@bansh3ee That is news to me. Never seen anyone use it('uses' or it('fails' The youngens in my team just say test('blar' but that is mainly because we changed framework and was unaware that is had the `it` intercompatibility method available. They turned what should have been a relatively tiny task into a mountain to review. Didn't have the heart to tell them
@BobFrTube
@BobFrTube 4 ай бұрын
Now they need to add a tagged expression for SQL queries. I have my own but it would be wonderful to have it built it.
@isrbillmeyer
@isrbillmeyer 4 ай бұрын
Top level await... Finally. Cannot tell you how that frustrated me in many projects.
@NurfHerderEclipse
@NurfHerderEclipse 3 ай бұрын
Which node version introduced these features. Expected this info to be in the description.
@mateja176
@mateja176 4 ай бұрын
Once you’ve used bun, which just works without any config, it’s difficult to go back.
@theintjengineer
@theintjengineer 4 ай бұрын
Precisely.
@abdurahmanmohamed4732
@abdurahmanmohamed4732 4 ай бұрын
There's absolutely no going back
@romania-n6q
@romania-n6q 4 ай бұрын
Yes but many frameworks aren't supported by bun.
@MordyDeep
@MordyDeep 4 ай бұрын
the companys don't use Bun lol
@criley7755
@criley7755 4 ай бұрын
Hasn't the recent Redis debacle illustrated once again why you never hitch your wagon to a tech stack controlled by venture capitalists?
@youloulou6591
@youloulou6591 4 ай бұрын
Very nice content. It would have been even nicer to get the version of Node in which each feature have been added
@abdelrahmanhafez990
@abdelrahmanhafez990 3 ай бұрын
The `fs/promises` thing was there for ages, is it more that they modernized all their standard libraries that used to take a callback?
@stephanw.9888
@stephanw.9888 4 ай бұрын
node.js never sucked, dude Jackson guitars actually do, though
@irlshrek
@irlshrek 4 ай бұрын
lets be real though, if deno wasnt forcing their hand they wouldnt be trying
@holypowerenjoyer6059
@holypowerenjoyer6059 4 ай бұрын
Bro got into beef
@sachamorgese7280
@sachamorgese7280 4 ай бұрын
Do you mean Bun? ​@@irlshrek
@irlshrek
@irlshrek 4 ай бұрын
@@sachamorgese7280 nope, before bun even came out node was put under pressure by deno
@sicfxmusic
@sicfxmusic 4 ай бұрын
0:14 are you sure about that?
@alokbaluni8760
@alokbaluni8760 4 ай бұрын
Which shampoo or conditioner do you use?
@felixgraphx
@felixgraphx 4 ай бұрын
Gonne piggy back on this comment to follow up with: Any chance we hear a couple guitar tunes any time soon?
@Fooney1
@Fooney1 4 ай бұрын
I think he uses Just for Men (with perfect genes).
@bossgd100
@bossgd100 4 ай бұрын
shampoo++
@sicfxmusic
@sicfxmusic 4 ай бұрын
Shampoo Simplified
@WebDevSimplified
@WebDevSimplified 4 ай бұрын
I just use cheap Dove men's shampoo
@smaragd_
@smaragd_ 3 ай бұрын
The less dependencies the better! Amazing features!
@isrbillmeyer
@isrbillmeyer 4 ай бұрын
SQLite right inside... excellent I tried the WASM module a few times to get the same. Ended up using Pouchdb and Loki database if I remember correctly.
@aravind.a
@aravind.a 4 ай бұрын
Great improvement from node.js. Thanks for the video :)
@opchaves
@opchaves 4 ай бұрын
Great content! Nodejs is great. Getting better and better 👍🏽
@bharatdubey83
@bharatdubey83 3 ай бұрын
When are you launching Nodejs simplified
@HarshKapadia
@HarshKapadia 4 ай бұрын
Nice! Thank you for compiling all these features! How did you find all the new features?
@Codefide
@Codefide 4 ай бұрын
Remember to add to your run script --experimental-sqlite flag for the node:sqlite to work
@tylerarrigoni7700
@tylerarrigoni7700 3 ай бұрын
Excellent! Thx for posting
@zalaam_0
@zalaam_0 4 ай бұрын
I've recently migrated to the bun but It seems node is finally taking this race seriously
@RustIsWinning
@RustIsWinning 4 ай бұрын
Deno is winning the race tho 🦕
@brandond_
@brandond_ 3 ай бұрын
​@@RustIsWinningpeople like you are the reason people hate rust. grow up brother
@RustIsWinning
@RustIsWinning 3 ай бұрын
@@brandond_ I do not care. Cry more 😂
@brandond_
@brandond_ 3 ай бұрын
@@RustIsWinning it's really funny how embarrassing you are to yourself lmao
@RustIsWinning
@RustIsWinning 3 ай бұрын
@@brandond_ I still do not care what you think. Enjoy your segfaulting runtime haha
@bharatdubey83
@bharatdubey83 Күн бұрын
Waiting for your Backend simplified course.
@stroiman.development
@stroiman.development 4 ай бұрын
6:37, you should _probably_ place your glob in a set of single or double quotes (but single quotes doesn't need escaping in JSON). I don't think it makes a difference on Windows, but it does on Linux/MacOS (Or Windows running WSL). Why? in any unix shell (sh, bash, zsh, fish, etc.) the shell expands the glob, meaning node will not see the glob, it will be launched with a specific list of files; those that match the glob at the time you launch. When does this matter? When you run tests in watch mode, and you add a new test file, node will not run that file. I haven't used node's test runner, but the above is true for how mocha behaves (i.e. it will pickup new test files, if you wrap the glob in quotes); I assume it would be the same for node's build in test runner.
@stroiman.development
@stroiman.development 4 ай бұрын
The above btw, also highlights one of the reasons you should always start with a failing test; so you know that the new test is actually being picked up by the test runner.
@ParasBansal10
@ParasBansal10 4 ай бұрын
Great video Kyle. 👌
@ubaidkhan426
@ubaidkhan426 4 ай бұрын
Really useful. Thanks!
@NaserPapi-x7z
@NaserPapi-x7z 3 ай бұрын
Wow, these significant and highly intelligent changes are going to revolutionize DX for every JavaScript developer. That's why I adore JavaScript everywhere, forever. 😊🚀
@theseangle
@theseangle 3 ай бұрын
Bruder was zum Teufel habe ich gerade gelesen, die Menschheit existiert nicht mehr
@yt-sh
@yt-sh 4 ай бұрын
Node is awesome, thank you for keeping us updated!
@aghileslounis
@aghileslounis 4 ай бұрын
Excellent video! Which node version these experimental features will get officially merged?
@jancartman321
@jancartman321 4 ай бұрын
Really great video. Well done. And you're really a good speaker. But, don't hate me, I find your facecam overlay just a little bit to large. Anyway, content counts, and that is great. Just thought I speak my mind ...
@amansagar4948
@amansagar4948 4 ай бұрын
Worked with bun in a recent project, sometimes the server just doesn’t response on hot restart, lot of other issues too but yea it’s really fast, you can observe when you do filesystem ops
@holgerflick
@holgerflick 4 ай бұрын
Great video. Would be great if you listed the NodeJS version number somewhere.
@holgerflick
@holgerflick 4 ай бұрын
Just saw it... 22.7.0
@KCrossReal
@KCrossReal 4 ай бұрын
Great video! Love NodeJs and hope they continue to improve it 🦾
@JoseHenrique-xg1lp
@JoseHenrique-xg1lp 4 ай бұрын
Can't wait for plain datetimes in Node
@JasonPhanP
@JasonPhanP 4 ай бұрын
Thank you so much, how great it is!!!
@gircsi117
@gircsi117 4 ай бұрын
Can we get a detailed video on WebSocket support?
@albertoiong6895
@albertoiong6895 4 ай бұрын
The most valuable clip I can see...
@xzex2609
@xzex2609 2 ай бұрын
it also got the greatest ever (and the last npm command) npm install bun .
@kueifengtung
@kueifengtung 4 ай бұрын
Amazed at the built 8n SQLite 🎉
@dmltdev
@dmltdev 4 ай бұрын
Maybe I missed it somewhere, but it would be useful to mention the Node.js version at the beginning. Great video though!
@kduy969
@kduy969 4 ай бұрын
Could I ask what font you used for the editor, it looks smooth!
@WebDevSimplified
@WebDevSimplified 4 ай бұрын
The default VSCode font.
@BeniZeBest2011
@BeniZeBest2011 4 ай бұрын
Like your vids, alil bit speedy for me but I can live with it. Just about Wepsocket client I didn't get you about that 'cause you can listen to socket in node since a long time. Client webapp add is just fine and a cool one to node I totally agree but I did'nt get the point about integrating server in node... Good work Kyle, keep on, watching you...
@frontend_ko
@frontend_ko 4 ай бұрын
nice~ i love node and bun both
@64jcl
@64jcl 4 ай бұрын
Lots of nice features there, debugging is certainly welcome. Typeshit I try to avoid as I prefer vanilla JS always.
@boot-strapper
@boot-strapper 4 ай бұрын
Ts is nice when configure to allow you to use what parts you want when you want.
@PierreSoubourou
@PierreSoubourou 4 ай бұрын
I think you could improve readability by enlarging your font (most screen space is unused now) - think of smartphone users. Thanks for the videos
@paristhemaster
@paristhemaster 4 ай бұрын
nice video!!! what about absolute paths? is there any quick fix?
@ShahrukhKhan32802
@ShahrukhKhan32802 4 ай бұрын
Still they did not added the builtin file upload feature.
@shivan2418
@shivan2418 4 ай бұрын
From which Node version is this avilable?
@eduardoalvarez4457
@eduardoalvarez4457 4 ай бұрын
On Node 22 and for the Typescript make sure you are in the very latest version of Node 22
@maabootcamp
@maabootcamp 4 ай бұрын
When would it be available for production use? Any updates on it?
@WillDelish
@WillDelish 4 ай бұрын
I need SQLite for my project now, cause trying to bundle the right version per OS is a huge pain in my cli app
@mohammadahmermalick7869
@mohammadahmermalick7869 4 ай бұрын
you are amazing bro
@zeteya
@zeteya 4 ай бұрын
How does node handle enums when stripping out the types? Since it's not really a type, it could also be used as a value that maps both directions.
@ivaylohandzharov
@ivaylohandzharov 4 ай бұрын
It doesn't. The flag only strips types. If you use any TS only feature it throws an error.
@TsillALevi
@TsillALevi 4 ай бұрын
Bun is the best. I tried it and did't want to turn back. It runs so fast and uses less ram.
@RustIsWinning
@RustIsWinning 4 ай бұрын
Deno better 🦕
@erikslorenz
@erikslorenz 4 ай бұрын
There isn't enough info on the built in test runner. Took me awhile how to figure out how to get setup stuff running. But once I did it's pretty good. Super fast. Experimental sqlite is pretty bare bones right now. I spent a bit of time making a wrapper around it for transactions and such.
@bicatu
@bicatu 4 ай бұрын
Cool, but you should have explored the limitation of the TS further.
@criley7755
@criley7755 4 ай бұрын
It's not a limitation. It strips out the types to give you actual JavaScript.
@bicatu
@bicatu 4 ай бұрын
@@criley7755 so does it work like ts-node/tsc? How about deno/bun? If it doesn't, then it is a limitation when compared to the alternatives. In the end I feel that this aspect should be further explored so besides the invalid types aspect, what other aspects would we be letting go if we were to stick to node.js directly.
@tylim88
@tylim88 4 ай бұрын
​@@bicatuBecause all of them strip types under the hood lol
@ManasTunga
@ManasTunga 4 ай бұрын
node typescript support is awesome. but node still requires file extension like .ts or .js for relative import.
@AjayCoding
@AjayCoding 4 ай бұрын
This is awesome!
@TylerR909
@TylerR909 4 ай бұрын
I wish terms like "test coverage" would fall out of the lexicon already.
@khai96x
@khai96x 4 ай бұрын
It's useful to detect edge cases. It's a tool, and like all tools, it isn't inherently good or bad.
@ColinRichardson
@ColinRichardson 3 ай бұрын
Needs more Semicolons
@i.mahdihosseini
@i.mahdihosseini 4 ай бұрын
so it's getting some of bun features?
@jialx
@jialx 3 ай бұрын
Node never sucked, devs just like to feel smart by hating whats popular
@PieterWigboldus
@PieterWigboldus 4 ай бұрын
Node dont support Typescript, it just strip type annotations like you can do in Typescript. It also calls strip types. Just that you dont need a build step anymore to just remove the type annotations.
@SDAravind
@SDAravind 4 ай бұрын
What version of node is being talked about?
@anshumankhanna8296
@anshumankhanna8296 2 ай бұрын
I think we should just sit one day and see just how many things are --experimental
@premprakash6673
@premprakash6673 4 ай бұрын
Node or springboot ?
@Zeero3846
@Zeero3846 4 ай бұрын
Using type: "module" still kind of sucks because other tools, like Jest, haven't fully adopted it, and they force you to use the experimental flag, and there's not actually a way to pass that to the debugger in VS Code whenever you try to debug a test. I haven't figured out how to do it, anyways. In any case, it all worked better to just use Babel and Webpack to transpile it to Node's default JavaScript syntax.
@vatmanzlokuz680
@vatmanzlokuz680 3 ай бұрын
deno still a better option
@ScriptCodec
@ScriptCodec 4 ай бұрын
Okay, node gradually winning my soul outta php😂😂
@MrLuckfinder
@MrLuckfinder 4 ай бұрын
What is node version?
@rosszhu1660
@rosszhu1660 4 ай бұрын
Most typescript project files are not working with the strip-types feature. e.g.: x TypeScript import equals declaration is not supported in strip-only mode ,-[5:1] 2 | * This is not a production server yet! 3 | * This is only a minimal backend to get started. 4 | */ 5 | import compression = require('compression');
@w1-w2-w3
@w1-w2-w3 4 ай бұрын
That is really cool.
@ioannis_gr
@ioannis_gr 4 ай бұрын
Node was always the 🐐
@SirusStarTV
@SirusStarTV 2 ай бұрын
WebSocket is web api on the client side, now nodejs implemented it. It's already has WS module so no need to do anything more.
@exmarinplorer
@exmarinplorer 4 ай бұрын
Kyle, please do more Node videos! Amazing video!
@oll236
@oll236 3 ай бұрын
I don't think I want a WebSocketServer implemented in node by default. Maybe I am wrong but it looks like too much overhead
@arshdeepkumar
@arshdeepkumar 4 ай бұрын
if we're doing this conversation that NodeJS is better than Deno/Bun than NodeJS is messed up, there shouldn't be no Deno/Bun ideally
@pedrorodriguez2683
@pedrorodriguez2683 4 ай бұрын
fs/promise has been there for a long time tho 🤔
@nicko3151
@nicko3151 4 ай бұрын
wow ok, but will someone fix the performance and size of nodejs someday?
@JohnLovell-FTW
@JohnLovell-FTW 4 ай бұрын
Talk to the COBOL programers about being a language old and out of date :)
@DarkzarichV2
@DarkzarichV2 4 ай бұрын
Running ESM in my project was not all that easy to be honest. Jest refused to work with that at first, because it didn't like "import" in my files. Probably there would be less problems if it was in TypeScript instead of just JavaScript
@derismekentz1
@derismekentz1 4 ай бұрын
Nodejs on IoT is crazy
@gryg666
@gryg666 4 ай бұрын
Nice. But I'll still use Bun due to ts support and other stuff :)
@DolevDublon
@DolevDublon 4 ай бұрын
I love you thanks kile
@solevow
@solevow 4 ай бұрын
so cool these built-in features added. before, installing tools like tsc, jest or so and make them work correctly is really painful and time wasting, although these features may keep experimental for centries
@wahoobeans
@wahoobeans 4 ай бұрын
Deno and bun remind me of yarn: node/npm sucks for a while, then some people create some new and better tool, and then forces node/npm to evolve/absorb the new tool
@RustIsWinning
@RustIsWinning 4 ай бұрын
@@wahoobeans did that even happen tho? Why is everyone still recommending pnpm or other alternatives?
@wahoobeans
@wahoobeans 4 ай бұрын
I dunno about pnpm. Never used it. In my experience, npm and node 12 was such a pain. Installs always crashedwith node gyp errors. all of errors went away though when we upgraded to node 20 and npm version 10. It was a miracle that we were able to develop locally and deploy our app with different package json versions…
@WirIez
@WirIez 4 ай бұрын
Still sucks because these are experimental features. I have yet to see a package manager from node that doesn’t suck either
@Kiev-in-3-days
@Kiev-in-3-days 4 ай бұрын
I kinda see typescript support in Node as enshitfication. Well at least they do not force us to use it. Not yet.
@samifouad
@samifouad 4 ай бұрын
the damage is already done I've been bun-pilled
@ayushporwal5950
@ayushporwal5950 4 ай бұрын
Nodejs: I am him
@Floubadour
@Floubadour 3 ай бұрын
Just use bun or maybe Demo (but without jsr). Node has this problem that every interesting feature is either experimental or you need to remember to enable it or whatever. In bun everything just works. I was initially skeptical but after trying it out and using it for one production app I am not looking back at the node. It's just not worth the effort
@nilsandresen97
@nilsandresen97 4 ай бұрын
**/ as a glob would match all test files in node modules aswell. There are no node modules here. Just be careful with that.
@hooooman.
@hooooman. 4 ай бұрын
As a junior React/Next.js developer, I am also planning to learn backend development. I have two options in mind: 1)Utilize my existing JavaScript knowledge to learn Node.js. 2)Learn Golang, which is much faster, highly in demand, and used in larger projects. Does anyone have any suggestions?
@turan_sultan
@turan_sultan 4 ай бұрын
I would suggest learning Go, as it is being chosen more often than any other languages for new services nowadays. I use node at work, and sometimes hear from my pm if I could use Go for new services because of the fact that it also ustilizes less server resources, hence money. So I am also planning to start learning it!
@stevenjoseph7403
@stevenjoseph7403 4 ай бұрын
Go for Nodejs, there is high market demand for Nodejs developers
@MinhazurSarker
@MinhazurSarker 4 ай бұрын
When did it suck?
@RustIsWinning
@RustIsWinning 4 ай бұрын
Still cannot compile to a single executable without going through like 7 different steps instead of one 😂
@lengors7327
@lengors7327 4 ай бұрын
Now instead of adding a bunch of libraries, I can just add a bunch of experimental flags 🤔
Why Signals Are Better Than React Hooks
16:30
Web Dev Simplified
Рет қаралды 496 М.
Only The Best Developers Understand How This Works
18:32
Web Dev Simplified
Рет қаралды 117 М.
Cat mode and a glass of water #family #humor #fun
00:22
Kotiki_Z
Рет қаралды 42 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
The Hidden Cost Of GraphQL And NodeJS
28:35
ThePrimeTime
Рет қаралды 202 М.
How To Handle Permissions Like A Senior Dev
36:39
Web Dev Simplified
Рет қаралды 338 М.
Web Developers Are Disconnected
21:36
ThePrimeTime
Рет қаралды 266 М.
JavaScript Visualized - Event Loop, Web APIs, (Micro)task Queue
12:35
Does Deno 2 really uncomplicate JavaScript?
8:55
Beyond Fireship
Рет қаралды 482 М.
Learn Express JS In 35 Minutes
36:03
Web Dev Simplified
Рет қаралды 878 М.
What’s Up with Laravel? It’s Everywhere, and Here’s Why!
6:22
Stop Using Pixels For Media Queries
18:48
Web Dev Simplified
Рет қаралды 42 М.
How To Build Feature Flags Like A Senior Dev In 20 Minutes
20:33
Web Dev Simplified
Рет қаралды 114 М.
Cat mode and a glass of water #family #humor #fun
00:22
Kotiki_Z
Рет қаралды 42 МЛН