Deno in 100 Seconds

Ғылым және технология

Deno is a brand new JavaScript runtime, similar to Node.js. Use it to develop secure server-side apps with built-in TypeScript support, ES modules, and promise-based APIs.
Learn more at deno.land
#javascript #nodejs #100SecondsOfCode
Install the quiz app 🤓
iOS itunes.apple.com/us/app/fires...
Android play.google.com/store/apps/de...
Upgrade to Fireship PRO at fireship.io/pro
Use code lORhwXd2 for 25% off your first payment.
My VS Code Theme
- Atom One Dark
- vscode-icons
- Fira Code Font

Пікірлер: 726

  • @Fireship
    @Fireship4 жыл бұрын

    Deno just hit v1.0.0-rc1. I have to say it's awesome to write scripts with TS support out-of-the-box. What do you think?

  • @sanusihassan7125

    @sanusihassan7125

    4 жыл бұрын

    Will node be replaced by deno?

  • @Max14211

    @Max14211

    4 жыл бұрын

    Your content has always been good. But it's on another level now, your scripts have 0 fluff and your editing jobs are really incredible and a very entertaining to watch. Mad props on your development as a content creator love your videos. :)

  • @Jessyco

    @Jessyco

    4 жыл бұрын

    @@sanusihassan7125 Depends on all the developers and support currently in place for Node. Just like any technology stack if it ain't broken don't fix it. Unless someone has some time on their hand to make a Node => Deno I don't see it happening overnight.

  • @sanusihassan7125

    @sanusihassan7125

    4 жыл бұрын

    @@Jessyco you are right

  • @pardal_bs

    @pardal_bs

    4 жыл бұрын

    The only thing I don't like about Deno is how it uses async iterables for listening to connections instead of events. Here's why: 1. It doesn't make sense to "iterate" over a listener. 2. It can cause bugs, because `await`ing inside a `for await ... of` will block requests from coming in. 3. Want to write something after the `for await ... of` loop? It won't execute. It feels like writing in a systems language, where the whole thread stops, waiting for something to happen. I also don't like the callback hell, but sometimes callbacks make more sense.

  • @smccartney09
    @smccartney094 жыл бұрын

    Job postings already asking for 3-5 years of Deno experience

  • @muhammadfaateh6463

    @muhammadfaateh6463

    4 жыл бұрын

    that is clearly lol

  • @carloslfu

    @carloslfu

    4 жыл бұрын

    I just got 5 years of experience watching this 100s video.

  • @andreiaquino8994

    @andreiaquino8994

    4 жыл бұрын

    I agree with this 😂 smh

  • @kolonbah6761

    @kolonbah6761

    4 жыл бұрын

    Exactly what I am thinking 😂

  • @shardulbirje6379

    @shardulbirje6379

    4 жыл бұрын

    @@muhammadfaateh6463 😂

  • @yassinahjij4321
    @yassinahjij43214 жыл бұрын

    2009: NODE 2018: DENO 2027: NEDO 2099: DONE

  • @KingKong-zq4mp

    @KingKong-zq4mp

    4 жыл бұрын

    ENDO

  • @gpguru7355

    @gpguru7355

    4 жыл бұрын

    @@KingKong-zq4mp ODEN

  • @abulfazlhaidary4625

    @abulfazlhaidary4625

    4 жыл бұрын

    Good one!!

  • @daxitpatel

    @daxitpatel

    4 жыл бұрын

    @@gpguru7355 THOR?

  • @KingKong-zq4mp

    @KingKong-zq4mp

    4 жыл бұрын

    @@daxitpatel LOKI

  • @911madza
    @911madza4 жыл бұрын

    Letters "D", "E", "N" and "O" can be arranged in 24 different ways. We already got NODE (2009) and DENO (2018). Assuming new JS runtime comes out every 9 years, we should be covered for next 204 years.

  • @tasehagi

    @tasehagi

    4 жыл бұрын

    Can't wait for ODEN! Hope I'll live long enough!

  • @VictorNascimentoo

    @VictorNascimentoo

    4 жыл бұрын

    DONE

  • @911madza

    @911madza

    4 жыл бұрын

    @@VictorNascimentoo They should symbolically release DONE as v24! Fingers crossed for 2216.

  • @CubeAmaterasu

    @CubeAmaterasu

    4 жыл бұрын

    Definetly DONE will be the last one

  • @divingradish

    @divingradish

    4 жыл бұрын

    @@tasehagi Yummy

  • @Pogibakayo
    @Pogibakayo4 жыл бұрын

    Can’t wait to try this out. Fireship is like Santa bearing toys for devs.

  • @sinatraforeign

    @sinatraforeign

    4 жыл бұрын

    Christmas in july!!

  • @jp46614

    @jp46614

    3 жыл бұрын

    it's nothing exciting tbh

  • @lasindunuwanga5292

    @lasindunuwanga5292

    3 жыл бұрын

    Same here

  • @thecashewtrader3328

    @thecashewtrader3328

    2 жыл бұрын

    Yes

  • @t.h.4823

    @t.h.4823

    2 жыл бұрын

    Definitely agree. I have already 6x more frameworks and languages I want to learn, that the ones I can use. xD

  • @lemek4
    @lemek44 жыл бұрын

    I love JavaScript world! Don't try to fix existing stuff, just create a new one!

  • @Fireship

    @Fireship

    4 жыл бұрын

    Haha, according to Ryan Dahl, Node is basically unfix-able because of all the legacy stuff it needs to support.

  • @adam-k

    @adam-k

    4 жыл бұрын

    @@Fireship 5 years from now deno will have the same problem. Anyway cannot use it before large cloud service providers adopt it.

  • @randomuser66438

    @randomuser66438

    4 жыл бұрын

    @@adam-k Ain't cloud servers supposed to allow you to install whatever you want?

  • @karma_yogi_42

    @karma_yogi_42

    4 жыл бұрын

    @@adam-k sure all software needs to be upgraded and maintained, but the point here is node's architecture is bad and upgrading is extremely difficult. That's why you see late adoption of newer es features. eg: you can virtually forget about top level await in node. Impossible for node to start on ts and wasm support

  • @kebbotnet4170

    @kebbotnet4170

    4 жыл бұрын

    on the contrary, look at software that tries to "fix existing stuff" without breaking BC. PHP is full of baggage from bad decisions in the past that won't be removed because of backwards compatibility. Java also suffers from this.

  • @academixit5126
    @academixit51264 жыл бұрын

    2022: NODENO - fixing all the problems with DENO.

  • @okie9025

    @okie9025

    4 жыл бұрын

    3 weeks later: NONODENO - self explanatory

  • @crowlkats

    @crowlkats

    4 жыл бұрын

    cant fix something that aint broken :P

  • @Microphunktv-jb3kj

    @Microphunktv-jb3kj

    4 жыл бұрын

    deno = so.. you have to use npm to install deno ... pretty much sums it up... pretty sure everyone keep using npm :D

  • @athif23

    @athif23

    4 жыл бұрын

    @@Microphunktv-jb3kj I don't know what you're talking about, but I'm pretty sure you don't install deno using npm.

  • @VictorNascimentoo

    @VictorNascimentoo

    4 жыл бұрын

    I would call it "DONE"

  • @liamvandemon1165
    @liamvandemon11654 жыл бұрын

    Once you mentioned the Rust bindings I was sold! I'm excited to dig in and try this out. Would love to see more vids on Deno, WASM, and Rust in the future, thanks for the great content as always!

  • @MfundoTenza
    @MfundoTenza4 жыл бұрын

    I'm a first year software dev student. I'm nowhere near this level of knowledge but I still like learning about all these advanced technologies. :)

  • @elmotareal

    @elmotareal

    4 жыл бұрын

    The only true skill you will acquire for real, is choosing what to ignore and what to learn :)

  • @gokuafrica

    @gokuafrica

    4 жыл бұрын

    So jealous of you. Wish I had subscribed to fire ship when I was in my first year

  • @maurusaurelius1266

    @maurusaurelius1266

    4 жыл бұрын

    Try to keep that beginner’s mind. It’s a blessing.

  • @lorenzocanavaggio5335

    @lorenzocanavaggio5335

    4 жыл бұрын

    You will get there ;)

  • @SimoneAronica

    @SimoneAronica

    4 жыл бұрын

    I think that once you'll understand how servers (especially http servers) work, it'll be easy to switch between every framework, as the hardest part of entering in a new framework is always learning the new syntaxes and what it can do without you needing to configure anything, but then the request respond architecture is always the same across all languages. Edit: fixed typos

  • @AreyHawUstad
    @AreyHawUstad4 жыл бұрын

    This is one of the best channels I have subscribed to in a very long time. Thanks for these 100-second videos, they are simply amazing!

  • @rickvian
    @rickvian4 жыл бұрын

    nobody: recruiters: "we need Deno programmer with 3 years of experience"

  • @FidelGuajardo
    @FidelGuajardo4 жыл бұрын

    Thank you for talking about this. I had forgotten about it after hearing about it almost a year ago. I would have thought it had fizzled out had it not been for you. I really enjoy your breadth and depth of topics. THANKS!

  • @lykeuhfox4597
    @lykeuhfox45974 жыл бұрын

    Thank you, thank you, thank you for this video format. With so many web technologies, these 100 seconds videos save me so much time with basic explanations for what they are and what they're used for.

  • @zheil9152
    @zheil91524 жыл бұрын

    9/10 video. Very informative, but you didn’t say “syntactic sugar” once, which is what I came for.

  • @Metruzanca
    @Metruzanca4 жыл бұрын

    I have been waiting for Deno to hit a useable release. HELL yes. Thanks my man for bringing this to my attention.

  • @lionel16
    @lionel164 жыл бұрын

    Deno is honestly super interesting and I'd encourage the use of it over node for beginners.

  • @Skia_
    @Skia_4 жыл бұрын

    your video editing and those memes you throw around are fire XD

  • @FahadAyaz

    @FahadAyaz

    4 жыл бұрын

    So is your body

  • @xSoulheadDesigns
    @xSoulheadDesigns4 жыл бұрын

    More of this pls! It's nice as a developer to meet these technologies in a short way.

  • @Kevin192291
    @Kevin1922914 жыл бұрын

    Already using it and already loving it!

  • @ragnarlothbrook8117
    @ragnarlothbrook81174 жыл бұрын

    Your videos are so well made that I would watch them even if they would be about crocheting.

  • @yuudaemones2624
    @yuudaemones26244 жыл бұрын

    Holy cow, _shivers_ that top level await though. And server side TS just makes sense. This looks so rad.

  • @everestshadow
    @everestshadow4 жыл бұрын

    As a Rust developer I would be very happy to use Deno if it can import crates directly for server side usage. I mean WASM is good and all but it requires some extract work to bridge between the JS and Rust is something I'm too lazy to do. And branch out from tokio runtime would also be cool.

  • @alexcubed4270
    @alexcubed42704 жыл бұрын

    This looks really interesting! I have never heard of Deno before this video, and I think I might see it a lot more in the future!

  • @kickbuttowsk2i
    @kickbuttowsk2i4 жыл бұрын

    just binged your channel vids and you came up with this

  • @CloudWithUgur
    @CloudWithUgur3 жыл бұрын

    you are the reason I stopped recording how tos or todos videos, dude, your videos are just great and I thank you !

  • @lord12790
    @lord127904 жыл бұрын

    Love this runtime, single executable, import directly from url, they started with golang but they moved to rust which is a great choice, caching of already compiled codes, sandboxing (nothing outside sandbox is allowed by default), and many more. Hope this is adopted fast and we get more libraries for this or port of node libraries here.

  • @codecraft27

    @codecraft27

    Жыл бұрын

    Can you plz explain 'sandboxing'

  • @tobias3581
    @tobias35814 жыл бұрын

    You know you produce quality consistently when I clicked like just by seeing the topic and channel

  • @logandemir1635
    @logandemir16354 жыл бұрын

    Bro, you are the man! More awesome techniques please!

  • @Arciiix
    @Arciiix4 жыл бұрын

    Your videos are amazing dude, keep it up :D

  • @AlecArmbruster
    @AlecArmbruster4 жыл бұрын

    Can’t wait to learn Deno and let it be one of my primary sources of pain/suffering in the future!

  • @normaneshuchi5474
    @normaneshuchi54744 жыл бұрын

    Okay I am stoked to try this!!! it is pretty awesome, especially the fact that it does away with so much boilerplate (The lazy side in me is winning). Thank you

  • @3mro_coding
    @3mro_coding4 жыл бұрын

    I can't ignore any video you post even if am not interested. For sure I will learn something new. You have unique conents.

  • @MrAwesomeTony
    @MrAwesomeTony4 жыл бұрын

    I learned about Deno when I was searching electron alternative and felt it has the potential to replace node in some ways. It also ditched a lot of nodejs stuff like NPM(package.json), API methods, etc. The point is that while it is still young, but it shows the ambition to correct a lot of things node is doing wrong (according to my "research"). Have fun learning new stuff.

  • @softwarelivre2389

    @softwarelivre2389

    4 жыл бұрын

    Can't wait for an deno based electron/nwjs version [Deno Webkit maybe 🤔🤔🤔].

  • @Yassir.A.P.

    @Yassir.A.P.

    2 жыл бұрын

    So, what Electron alternatives have you found and now recommend?

  • @xeliani.7809

    @xeliani.7809

    2 жыл бұрын

    @@Yassir.A.P. tauri

  • @codecraft27

    @codecraft27

    Жыл бұрын

    Can you Explian what things nodejs does wrong?

  • @AlexEscalante
    @AlexEscalante2 жыл бұрын

    I would try it! Certainly makes things easier and straightforward

  • @kimdavidj2
    @kimdavidj23 жыл бұрын

    Dude this is AWESOME!!

  • @rishavg9524
    @rishavg95243 жыл бұрын

    This guy makes learning awesome

  • @0x6e95
    @0x6e954 жыл бұрын

    YES! Finally! Deno will be huge in the future. Mark my words.

  • @proohit99
    @proohit994 жыл бұрын

    Oh my God, now that I see this in action, this looks so promising. Can't await it!

  • @vukkulvar9769

    @vukkulvar9769

    3 жыл бұрын

    await deno()

  • @ichiidev
    @ichiidev3 жыл бұрын

    The only things that are keeping me on Node are NPM and the popularity of Node. I'm still a beginner developer and I rely a lot on modules, and even if Deno has a lot of good things, because the use of external package seems like a lot of complications for me, and because there are less people using it, I won't be able to find much help in case I struggle. And because of that, I'll be staying on Node for some more time.

  • @TheEnde124
    @TheEnde1244 жыл бұрын

    Please do more videos about Deno! It looks really good

  • @elbonkadillo
    @elbonkadillo4 жыл бұрын

    Secure by default!? PogChamp!! I definitely have to check this out.

  • @danielwood2432
    @danielwood24324 жыл бұрын

    I would love to see more videos about Deno. I love Node, but have found parts of it to be gross to use. I love your fast paced style of videos and would be thrilled to see more on this topic from you.

  • @edgarchicas6756
    @edgarchicas67564 жыл бұрын

    Just learned how to use node, and deno looks real good 👍🏼

  • @yogeshdeveloper5346
    @yogeshdeveloper53464 жыл бұрын

    Yes! In my opinion, Deno is the future of js runtime!

  • @Wereld03

    @Wereld03

    4 жыл бұрын

    If it supported NPM modules, those are what make node great

  • @crowlkats

    @crowlkats

    4 жыл бұрын

    @@Wereld03 those are what make node hell. Too many people rely on dependencies for stupid reasons... left-pad is the best example. People should stop blindly using packages

  • @exactzero

    @exactzero

    4 жыл бұрын

    @@Wereld03 No.

  • @yogenp
    @yogenp4 жыл бұрын

    Love the content and the animation. Nice job!

  • @sagaracharya7537
    @sagaracharya75374 жыл бұрын

    This was awesome jeff

  • @97pixels
    @97pixels4 жыл бұрын

    Looks really powerful with handy features

  • @stephen9849
    @stephen98494 жыл бұрын

    PWA in 100 seconds

  • @Fireship

    @Fireship

    4 жыл бұрын

    That'll happen soon :)

  • @goodclover

    @goodclover

    4 жыл бұрын

    @@Fireship Yes!

  • @rand0mtv660
    @rand0mtv6604 жыл бұрын

    It looks cool and the fact that the creator fixed some of the issues that plague Nodejs is great...but I'm not sure if it can gain enough traction since Node as a platform (with NPM) is so popular right now and there has been so much tooling and code created for it. People might be hesitant to migrate.

  • @Soremwar

    @Soremwar

    4 жыл бұрын

    The thing is Node is not especial, what gives Node value is the fact that it can run JavaScript, meaning that most of the code already written in Node can be ported to Deno, so it's not like Deno begins at 0% percent, it can inherit everything Node already has For example, I can use React directly on my Deno app without having to rewrite a single line of it

  • @bahlulhasanli
    @bahlulhasanli4 жыл бұрын

    Thank you bro 👍🏻 You are just awesome

  • @isfland
    @isfland4 жыл бұрын

    10 years later, new product from Ryan Dahl: DONE, which solves the Deno and Node weaknesses.

  • @benyoucefmansour3347
    @benyoucefmansour33474 жыл бұрын

    Deno stands for: Destroy node.

  • @khotambakhromov

    @khotambakhromov

    4 жыл бұрын

    btw, is it real? or just a joke

  • @eoussama

    @eoussama

    4 жыл бұрын

    I Deno about that chief!

  • @sadhlife

    @sadhlife

    4 жыл бұрын

    @@khotambakhromov absolutely real. and absolutely the future

  • @alim.ismail8272

    @alim.ismail8272

    4 жыл бұрын

    Deno is node in reverse. no-de => de-no

  • @KylerChin

    @KylerChin

    4 жыл бұрын

    Yes, also is the name from a Japanese manga about a dino

  • @kademmohammed6836
    @kademmohammed68364 жыл бұрын

    I'm an early adapter of this video xD

  • @randomuser66438
    @randomuser664384 жыл бұрын

    I was looking forward for 1.0. I'll give it a try.

  • @larsartmann
    @larsartmann4 жыл бұрын

    It seems really cool :D!

  • @redeemed2426
    @redeemed24264 жыл бұрын

    Great vid. Seems too niche right now. So many haven't even picked up TS for Node. Let's get there first. Personally, I use Go :)

  • @natew4724
    @natew47243 жыл бұрын

    I'm sorry but that server with for await is the most satisfying thing I've ever seen in my life

  • @will_abule
    @will_abule4 жыл бұрын

    I've looked at deno and I'm in love

  • @sinanik4886
    @sinanik48864 жыл бұрын

    Perfect!

  • @Geomaverick124
    @Geomaverick1244 жыл бұрын

    I think that it will become one of the big programming frameworks / languages but wont overtake Node...Similar to how typescript wont overtake javascript or Svelte over the other frameworks... at least for a few years. On the front we will have React, Angular, Vue, Svelte...and on the backend will have Node/Express, Deno, Python,Php/Laravel, and C# as choices for the most popular

  • @74code16
    @74code164 жыл бұрын

    Great content 👍

  • @fedes9626
    @fedes96264 жыл бұрын

    One guy will make a small web framework for deno inspired by ruby and will be praised like a god yet again.

  • @DarshitHedpara
    @DarshitHedpara4 жыл бұрын

    You are awesome dude 🔥🔥🔥🔥🔥🔥

  • @Guergeiro
    @Guergeiro4 жыл бұрын

    If anyone wants a rest micro framework for Deno, checkout Drash! Disclaimer: I'm one of the mantainers.

  • @miguelgargallo
    @miguelgargallo Жыл бұрын

    Wow thanks for that!

  • @Geomaverick124
    @Geomaverick1244 жыл бұрын

    I think the way that these new languages will become popular is for Senior devs looking to use something new at their companies start using a combination of Svelte and Deno. When they leave the company you will have a void and a need of someone who knows Svelte and Deno to take his place...if those new frameworks are adopted company wide then when people leave the company they take that knowledge and implant it into another company causing the need to spike

  • @hamidbluri3135
    @hamidbluri31354 жыл бұрын

    It's awesome!

  • @duncan-dean
    @duncan-dean4 жыл бұрын

    Deno FTW!

  • @REDIDSoft
    @REDIDSoft4 жыл бұрын

    Amazing video

  • @arctan6909
    @arctan69094 жыл бұрын

    And that’s a good thing!

  • @gustavokuze
    @gustavokuze4 жыл бұрын

    The real question is: When is Ryan Dahl going to be DONE?

  • @HomelessFooser

    @HomelessFooser

    4 жыл бұрын

    i was kinda thinking the same thing so this made me laugh

  • @VishalPandey-tf3wp

    @VishalPandey-tf3wp

    4 жыл бұрын

    :D

  • @osbornghampson995
    @osbornghampson9952 жыл бұрын

    Even though it is awesome, it can't beat node js because of the community support and maturity, plus companies will not migrate when existing tools already do the work without too much issues

  • @maxwellsmartarse2916

    @maxwellsmartarse2916

    2 жыл бұрын

    But what about for new coders and new ventures? That's probably where the market is. It's where I'm starting.

  • @raniketram
    @raniketram4 жыл бұрын

    This is going to be awesome

  • @brandonleichty
    @brandonleichty4 жыл бұрын

    Yes. I do think it’s the future of server side JavaScript.

  • @zoecarlibur
    @zoecarlibur4 жыл бұрын

    The line between front-end and back-end will become even more blurred. Once the code bases start to look the same. Which is a good thing IMO. But how does this affect existing frameworks like NestJS or Angular?

  • @Oswee
    @Oswee4 жыл бұрын

    Considering all the clutter in frontend world... i think this will be the game changer. Highly optimistic even if i do not use JS for the back-end.

  • @udayaprakashn
    @udayaprakashn4 жыл бұрын

    You bring exciting treats to us developer "dawgs"

  • @rhyanz46
    @rhyanz464 жыл бұрын

    very interested!!

  • @fullstackgreekdeveloper8033
    @fullstackgreekdeveloper80334 жыл бұрын

    A lot of hype one this one!

  • @rafmsou
    @rafmsou4 жыл бұрын

    I guess this is the future and it will be massive!

  • @ThreadsX
    @ThreadsX4 жыл бұрын

    sounds good

  • @chrismuga
    @chrismuga4 жыл бұрын

    Deno sounds exciting, will use it if I get a chance. In the meantime NODEJS will do.

  • @mikevaleriano9557
    @mikevaleriano95574 жыл бұрын

    I just wish Deno (or even Node) would implement something to make coding as zen as Python. What I mean is an UNDISPUTED set of defaults as style guide, much like you get with Black or autopep8 in Python. It would make tooling so easier to digest, no more infinite .dotfiles laying around your root.

  • @mostafamohammed4853
    @mostafamohammed48534 жыл бұрын

    Typescript in 100 seconds pls I really love your videos and I hope you Good luck ♥️

  • @pravishal5102
    @pravishal51024 жыл бұрын

    No callback hell! No NPM ! Am Adopting this!

  • @jacquesduplessis6175
    @jacquesduplessis61754 жыл бұрын

    Starting to look more and more like a real back-end language

  • @kerimtim
    @kerimtim4 жыл бұрын

    0:38 Closing the laptop and going to gym!

  • @robertotrevino638
    @robertotrevino6384 жыл бұрын

    Please do a video on Q# and the Quantum Development Kit, I've been trying to wrap my head around it these last few days while in quarantine

  • @roulzhq
    @roulzhq4 жыл бұрын

    I have no idea about the technical obstacles not about alternatives, but using npm with deno would be awesome. I don't like the idea of creating all those npm packages again for deno, thought I understand that it would need quite some work to support npm.

  • @NicholasMaietta
    @NicholasMaietta4 жыл бұрын

    If node.js was such a big deal, Demo certainly will be. Looking forward to it.

  • @mibdev
    @mibdev4 жыл бұрын

    Dammn. Nice. We just ditched Node over Go and Rust, but Deno might be nice for some prototyping. I'm liking the look of it. :)

  • @eyondev
    @eyondev3 жыл бұрын

    I can't wait for NEO-D

  • @user-wc1sm8cj8s
    @user-wc1sm8cj8s3 жыл бұрын

    that top level await is just, insane! holy crap I wish they also do this in node

  • @codeaperture

    @codeaperture

    3 жыл бұрын

    Node can't be replaced by Deno..

  • @user-wc1sm8cj8s

    @user-wc1sm8cj8s

    3 жыл бұрын

    @@codeaperture Why not reread what I just said. Did I say replace Node with Deno? Improve your reading comprehension mate!

  • @companyco4859

    @companyco4859

    2 жыл бұрын

    @@codeaperture Who do you think you are not reading things and typing something irrelevant to op's submission.

  • @justinstoddard4782
    @justinstoddard47824 жыл бұрын

    Yes it is!!

  • @burhanudinpratama
    @burhanudinpratama4 жыл бұрын

    Such a good dino

  • @lone.wo1f
    @lone.wo1f4 жыл бұрын

    Now, I think it is better to be a software developer than a web developer, every now and then new runtime, frameworks come, and little time you get to learn, let alone master them...

  • @Mauryarohit1
    @Mauryarohit13 жыл бұрын

    liked the intro already.

  • @supindersingh8882
    @supindersingh88824 жыл бұрын

    Got introduced first time with Deno. Looks little bit cooler than Node

  • @sagnikpradhan3594
    @sagnikpradhan35944 жыл бұрын

    Honestly speaking I have seen Deno since a year, And I havent seen it really grabbing any significant attention.I still like the way node is. But yeah the idea is very interesting.

  • @Equilibrier
    @Equilibrier2 жыл бұрын

    Awesome.

Келесі