I Stopped Using Express.js: Because Bun and Hono 🔥

Поделиться
HTML-код
  • Опубликовано: 2 окт 2024

Комментарии • 264

  • @raident29
    @raident29 8 месяцев назад +32

    JS developers change frameworks more often than they take a bath.

    • @jotaroisdarius1918
      @jotaroisdarius1918 3 месяца назад

      yeah this is getting rediculous lol

    • @TolyaBogomolov
      @TolyaBogomolov 2 месяца назад +3

      Express.JS is 14 years old. So, this is a little bit concerning. How can a human being survive without showering for 14 years straight?

    • @raident29
      @raident29 2 месяца назад +3

      @@TolyaBogomolov i see humor is lost to js devs

    • @malcolmn.5222
      @malcolmn.5222 2 месяца назад

      Why complain most of this stuff is free and you get to use something that you like.

    • @aaabbbcccdddeeeefffggg
      @aaabbbcccdddeeeefffggg 26 дней назад

      @@TolyaBogomolov I'm not sure. Back in the caveman days they would still take a shower at least once a week, so I just can't imagine.

  • @romank1ng528
    @romank1ng528 8 месяцев назад +61

    Amazing video! I don’t know if it’s just me but: being able to write your server logic in Typescript without extra tooling, the fact you can write JSX, just amazing, my only concern with these new and better technologies is compatibility with existing libraries and packages, maybe you could do a video addressing that

  • @zunnoorainrafi5985
    @zunnoorainrafi5985 9 месяцев назад +55

    Bro will you make a full stack application using Bun, so that we can learn something from your experience

    • @dinckelman
      @dinckelman 8 месяцев назад +6

      The way you can learn from this experience is if YOU make a full-stack app using Bun. His knowledge isn’t magically transferred into your head

    • @Agent_Six_
      @Agent_Six_ 8 месяцев назад

      Is it that you're not sure how full-stack works? Here.
      OPEN THE TERMINAL AND RUN
      > mkdir HotelTrivago
      > cd HotelTrivago
      > bun init
      > bun install express cors
      CREATE FILE CALLED "server.js" IN THE "HotelTrivago" FOLDER THEN BUILD AN API THAT SPITS OUT SOME TEXT USING THE BELOW CODE
      START CODE BLOCK
      const express = require('express');
      const cors = require('cors');
      const app = express();
      app.use(cors());
      app.get('/', (req, res) => {
      res.send("Trivago");
      });
      app.listen(3000, () => {
      console.log('listening on port 3000');
      });
      END CODE BLOCK
      BACK TO THE TERMINAL AND START UP THIS BAD BOY
      > bun server.js
      OPEN BROWSER AND GO TO 'localhost:3000/' AND BEHOLD, OUR SERVER/API HAS RESPONDED WITH THE WORD "Trivago"
      NOW WRITE A CLIENT APP THAT USES THIS API ENDPOINT
      CREATE AN "index.html" FILE ANYWHERE, OPEN WITH A TEXT EDITOR AND INSERT THIS MARKUP
      START MARKUP BLOCK
      async function clickityclickity() {
      let response = await fetch('localhost:3000');
      let data = await response.text();
      document.querySelector('p').innerHTML = data;
      }
      Hotel?
      Click Me
      END MARKUP BLOCK
      NOW OPEN "index.html" WITH A BROWSER
      CLICK THE BUTTON AND BEHOLD THE "Hotel?" TURNS INTO A "Trivago"
      FULL STACK, BABY

  • @hanibioud
    @hanibioud 8 месяцев назад +138

    Thumbs up if you don't even understand what he's saying.

    • @antareephasan
      @antareephasan 8 месяцев назад +3

      😂

    • @elpolodiablo5486
      @elpolodiablo5486 8 месяцев назад

      Are you dumb ?

    • @killerdroid99
      @killerdroid99 8 месяцев назад +7

      I understand what he's saying

    • @fuzzboi
      @fuzzboi 7 месяцев назад +4

      Gotta practice more with fullstack projects

    • @aldi_nh
      @aldi_nh 5 месяцев назад +1

      dude get recommended wrong videos

  • @AjayYoutube-rz2so
    @AjayYoutube-rz2so 9 месяцев назад +54

    Your content is really amazing, i would love to see a vite and hono full fledged tutorial.

  • @ayushgogna9732
    @ayushgogna9732 9 месяцев назад +22

    i wanted to use hono for a time now but bun and hono combined looks crazy fun. I think the next project will be with bun and hono

  • @koteelok2014
    @koteelok2014 9 месяцев назад +40

    Yo, can't wait for Hono+Vite+React setup tutorial!

    • @armandsalle8447
      @armandsalle8447 9 месяцев назад

      I've tried a couple of time to make it works but failed! Can't wait to see the video!

    • @jarnathan-snow
      @jarnathan-snow 8 месяцев назад +6

      Man just ditch React and Client frameworks once and for all. You have JSX on the server with these. What else do you need?

    • @voidmind
      @voidmind 8 месяцев назад

      I'd love to see that too. Where I work, we use Next.js (page router) for a big web app and the DX is terrible. The dev server crashed at least one a day and take close to 2GB of memory. All I care about in Next if getServerSideProps(), so if I could use something lightweight to replace it, that would be awesome.

    • @ustav_o
      @ustav_o 5 месяцев назад

      beth stack but hono
      ​@@jarnathan-snow

    • @koteelok2014
      @koteelok2014 5 месяцев назад

      @alaskandonut yoooo, thx bud

  • @kodekorp2064
    @kodekorp2064 9 месяцев назад +18

    While bun is great, Bun is still reliant on one primary developer.
    I love bun and will continue to use it for smaller projects or side projects, but until it becomes reliable longevity wise, I prefer to stay with the standard tech for now for business focused work.

    • @WillDelish
      @WillDelish 9 месяцев назад +5

      Luckily hono supports node too

    • @uchennaofoma4624
      @uchennaofoma4624 8 месяцев назад

      ​@@WillDelishtrue

    • @juststudying1019
      @juststudying1019 5 месяцев назад

      JS developers are sick to be honest they always run for new things without any need, searching for the perfect library or runtime or framework and they never find one or will.
      I am a js developer but the community is just too much, and I am not against developing more libraries that are better, but not hundred of solutions for the same problem and most of them are the same

    • @pmrebel2733
      @pmrebel2733 Месяц назад

      Today bun is good tomorrow there is something better and we all abandon bun😢

  • @rmnkot
    @rmnkot 8 месяцев назад +6

    It would be great to see the performance part in comparison with express, fastify on node to understand the capabilities of this modern framework

    • @blender_wiki
      @blender_wiki 8 месяцев назад

      Google is your friend:
      "Node.js vs Deno vs Bun: Express hello world server benchmarking"

  • @aldrickdev
    @aldrickdev 9 месяцев назад +9

    the use of context reminds me of how Golang Web Frameworks like Gin and Echo work. Pretty nice!

    • @gusparr28
      @gusparr28 8 месяцев назад +2

      Same here! I was looking for this comment

  • @Marujah07
    @Marujah07 9 месяцев назад +8

    Amazing! We’re waiting for a full Tutorial ;-)

  • @gadgetboyplaysmc
    @gadgetboyplaysmc 8 месяцев назад +6

    Have you tried Elysia? The DX is really amazing

    • @jarnathan-snow
      @jarnathan-snow 8 месяцев назад

      it is not. Have you tried nesting guards?

    • @killerdroid99
      @killerdroid99 8 месяцев назад

      ​@@jarnathan-snowyh that's a chore but I prefer beforehandle function

  • @ivv3393
    @ivv3393 8 месяцев назад +8

    The problem with this new tech is that the industry doesn't implement it. They stick with the OG tech. So spending time learning something like that could be wasting of time sadly.

    • @wobsoriano
      @wobsoriano 8 месяцев назад +1

      yep

    • @tobeythepancake
      @tobeythepancake 6 месяцев назад +6

      It’s pretty straight forward though, anyone with react and express knowledge will pick this up in an hour.

    • @Sammysapphira
      @Sammysapphira 5 месяцев назад +1

      It doesn't take any time to learn this if you already know express. That was the point of bun, to supercede node, express, npm, but actually fast since it runs on zig.

    • @juststudying1019
      @juststudying1019 5 месяцев назад +2

      JS developers are sick to be honest they always run for new things without any need, searching for the perfect library or runtime or framework and they never find one or will.
      I am a js developer but the community is just too much, and I am not against developing more libraries that are better, but not hundred of solutions for the same problem and most of them are the same

    • @malcolmn.5222
      @malcolmn.5222 12 дней назад

      ​@@juststudying1019 you're complaining like you are making these solutions smh

  • @VictorMongi
    @VictorMongi 9 месяцев назад +4

    Hello sam, how about ElysiaJs?

  • @darkoplax7688
    @darkoplax7688 9 месяцев назад +5

    I wish Bun had Windows and Nextjs support ... hopefully soon

    • @fabrice9848
      @fabrice9848 25 дней назад

      Just quit using Windows and start using Linux, you'll thank me later.

  • @sujjee
    @sujjee 9 месяцев назад +2

    Hey sam please make a comparison between Hono and ElysiaJS

  • @Badis-n2u
    @Badis-n2u 9 месяцев назад +4

    I started to think that web dev is getting more broken with time,
    First, it was html css Javascript & php
    Then react angular express angular react vite mysql
    Today react express mongodb express nextjs nestjs bo fo ko do so & nono
    One year from now they will be +infinity

    • @Badis-n2u
      @Badis-n2u 9 месяцев назад

      We will be done with mentel fog

    • @hba6018
      @hba6018 8 месяцев назад

      Htmx

  • @paulsanchez5030
    @paulsanchez5030 8 месяцев назад +1

    Yes, but why would you ever excuse using JS as a server in 2024? after all we have learned that js sucks for servers already, right?

    • @6112115
      @6112115 7 месяцев назад

      Sure, but the same can’t be said for typescript…

  • @jaymartinez311
    @jaymartinez311 5 месяцев назад +1

    Tutorial for hono/vite if possible. Idk if you already did it but thanks ahead of timeif you are thinking about it.

  • @shouryansharma
    @shouryansharma 4 месяца назад

    error: Cannot find module "react/jsx-dev-runtime" from "/Users/sam/Documents/server/src/app.tsx"

  • @danvilela
    @danvilela 6 месяцев назад +1

    Hono seems cool, but after Sveltekit I can’t see me using another tool for api

  • @oldadajbych8123
    @oldadajbych8123 6 месяцев назад +1

    As informative this video was, it was also quite fun, because hovno (read almost like hono) means shit in Czech.

  • @damianjanus1990
    @damianjanus1990 8 месяцев назад

    More bun and Hono please! Maybe build full rest api with swagger, mongo and some sort of autorization it is be nice

  • @cyrilgeorge7818
    @cyrilgeorge7818 9 месяцев назад +2

    You know what I have an old express project, I will try migrating it to bun + hono . Want to see what are the gotchas in this combo.

  • @fullstack_journey
    @fullstack_journey 8 месяцев назад +2

    Subscribed for the hono+vite magic that you'll drop

  • @anonlegion9096
    @anonlegion9096 9 месяцев назад +1

    You just stopped using express now?? You should've stopped using express when Fastify came out

  • @zlatkoiliev8927
    @zlatkoiliev8927 8 месяцев назад +2

    I am absolutely blown away! 😮 This is so much better than Node and Express! If they come up with a framework like Nest or Adonis with bun and hono, it will absolutely dominate the backend world!

    • @blkgames1447
      @blkgames1447 8 месяцев назад

      Did you ever test elysia i'm looking for something performant and reliable

  • @DamirSecki
    @DamirSecki 9 месяцев назад +3

    You are going so fast... is hard to follow... but none the less... very valuable content. thanks

    • @blender_wiki
      @blender_wiki 8 месяцев назад

      In YT you have a great option to slow down the playback speed of a video and also an advanced button called "pause".🤷🏿‍♀️🤷🏿‍♀️🤷🏿‍♀️

    • @DamirSecki
      @DamirSecki 8 месяцев назад +1

      @@blender_wiki will this magic button also give all the context that I need? Is not the speed of the video that is fast... but the flow... but thanks for such a lovely condesending and mansplaining comment! We def. need more of these!

  • @whodoneitx2x
    @whodoneitx2x 9 месяцев назад +3

    Could you make a video integrating tRPC with hono?

  • @ajdinpipo08
    @ajdinpipo08 9 месяцев назад +1

    It's kinda mix of express.js and golang. But anyway looks so cool and clean

  • @Kats0unam1
    @Kats0unam1 8 месяцев назад +1

    I stopped using JS on the server because Go exists

    • @dominicbruhwiler3042
      @dominicbruhwiler3042 8 месяцев назад

      Why do you prefer Go? Just because it's faster? What about the developer experience?

    • @Kats0unam1
      @Kats0unam1 8 месяцев назад

      @@dominicbruhwiler3042 dev experience ? lol. just learn something else that isn't js and your "dev experience" will sky rocket 200000%

  • @2xxxtrem
    @2xxxtrem 9 месяцев назад +6

    What are your thoughts on Hono vs. Elysia? What do you prefer about Hono?

  • @SteepVisions
    @SteepVisions 7 месяцев назад

    Guys stop. Express is great. What are you going to do now? Re-invent html?

  • @gryg666
    @gryg666 9 месяцев назад +1

    Hah, I'm doing the same! With drizzle orm and vitest it's perfect stack for me.

  • @ayushgogna9732
    @ayushgogna9732 9 месяцев назад +1

    can you also make a video on elysiajs and bun

  • @juststudying1019
    @juststudying1019 5 месяцев назад

    Great video Sam, thanks.
    BUT
    JS developers are sick to be honest they always run for new things without any need, searching for the perfect library or runtime or framework and they never find one or will.
    I am a js developer but the community is just too much, and I am not against developing more libraries that are better, but not hundred of solutions for the same problem and most of them are the same

  • @ajinkyax
    @ajinkyax 4 месяца назад

    Thanks now I understand why Hono is better that ElisiaJS too 🎉

  • @programcoffee1080
    @programcoffee1080 7 месяцев назад

    Next month another Super Fast Framework and yet, the main app are running on the good and old Spring, Express and Django...I love the educational content though

  • @JakubSK
    @JakubSK 8 месяцев назад

    Oh no.. Express is still here Ava Node.js hasn’t been replaced. Wrong again guys.

  • @martinoveer9483
    @martinoveer9483 7 месяцев назад

    Dude your videos are unwatchable... slow down. If you want people able to watch it, do NOT assume everyone can run same speed as the fastest runner in video :)

  • @cholasimmons
    @cholasimmons 3 месяца назад

    Are you able to run a successful docker build with Bun?
    I've been bashing my head for the past 6 versions

  • @zuzukouzina-original
    @zuzukouzina-original 8 месяцев назад

    I don’t think Express will miss you 😂
    You could’ve used NestJ, but hey it’s your choice.

  • @aprilm2941
    @aprilm2941 9 месяцев назад +2

    You had me at “Because Bun” it’s always about the bun

  • @kamalkamals
    @kamalkamals 26 дней назад

    hono still has a loooot of issues like websocket implement and graphql like yoga with enable ws ...etc, so i cannot recommend hono for now

  • @ArielBenichou
    @ArielBenichou 4 месяца назад

    do you have a video about exposing an ML (AI) model thourgh a JS/TS API?

  • @returnZeroo
    @returnZeroo 9 месяцев назад +1

    waiting to watch a vite and hono full fledged tutorial

  • @TianYuanEX
    @TianYuanEX 26 дней назад

    Can hono be used in non serverless environments? Because if it can't how would you implement socket connections or anything that needs a longer connection

  • @bugged1212
    @bugged1212 8 месяцев назад

    What's it with these mustached programming mofo's popping up everywhere.

  • @draxler.a
    @draxler.a 5 месяцев назад

    i use vanilla js for routing 😂😂
    believe it or not it work perfectly without all dos funcy library 😂

  • @jonny__b
    @jonny__b 20 дней назад

    Do you live in the US? Your english accent is a little yankish

  • @7doors847
    @7doors847 9 месяцев назад +1

    Great, as always. ✌️

  • @pallu83
    @pallu83 8 месяцев назад

    So what problem is this fixing? Express too slow? Too slow for what? For who? Respect to what ?

  • @kurniamassidik5798
    @kurniamassidik5798 4 месяца назад

    since i only new about express js, could be more risk to implement this to my project, but i will try my best to use it from my next project

  • @misterlinuxfriendly947
    @misterlinuxfriendly947 8 месяцев назад

    Nice intro! Well done.

  • @naranyala_dev
    @naranyala_dev 9 месяцев назад +1

    HTMX, HTMX, HTMX

  • @mehedihasanridoy1086
    @mehedihasanridoy1086 9 месяцев назад +1

    What about database operations? I used it around 10 month ago. Only problem in that time i found is that db operation. I need to use totally raw operation. Express has mongoose ODM but i Don't find similar that

    • @elephant_888
      @elephant_888 9 месяцев назад

      I’ve used Prisma with hono and bun. No problem.

    • @mehedihasanridoy1086
      @mehedihasanridoy1086 9 месяцев назад

      @@elephant_888 can you share the setup docs?

    • @SamMeechWard
      @SamMeechWard  9 месяцев назад

      try out drizzle.team

  • @domw2391
    @domw2391 8 месяцев назад +1

    How hono vs Elysia?

  • @NigelNindo
    @NigelNindo 3 месяца назад

    This looks great for use with HTMX with built in JSX

  • @StarsOfMinecrafttr
    @StarsOfMinecrafttr 9 месяцев назад +2

    you may want to switch rust/axum it also looks like express but much faster and lightweight than ever, also supports multithreading with tokio

    • @uchennaofoma4624
      @uchennaofoma4624 8 месяцев назад

      True, but we're in node/js land right now 🥲

  • @puredistillates
    @puredistillates 9 месяцев назад +2

    make the tut

  • @wizardofoz220
    @wizardofoz220 3 месяца назад

    "Express became outdated and slow" LOL LOL

  • @TesterAnimal1
    @TesterAnimal1 8 месяцев назад

    So this is next month’s greatest thing.
    Looking forward to March’s greatest thing and everybody hates February’s 🙄

  • @igortrifonov9339
    @igortrifonov9339 8 месяцев назад +1

    I stopped using JS cuz Go

  • @codecaine
    @codecaine 6 месяцев назад

    There will always be endless new stacks. Even when a new one if faster does not mean you have to alway change. It is vary hard to hit bottlenecks unless you 100,000s of people a second almost ever second.

  • @MeerUzairWasHere
    @MeerUzairWasHere 7 месяцев назад

    Nah... Express can't die :)

  • @chiqui1234ok
    @chiqui1234ok Месяц назад

    Hi again, I'm testing Bun and I already setted up half of JWT. But right now I want to make my register and login routes. Finded out c.req.query('user') and c.req.query('password') didn't retrieve anything. I'm sending those two variables through Postman in form-urlencoded (as always). Anybody finds the solution? In Node + Express was app.use(express.json()) in the main javascript file, but here I don't know if I need some method like this, or maybe I'm doing something wrong...
    Thanks

    • @chiqui1234ok
      @chiqui1234ok Месяц назад

      Data though params (GET variables) works ok.

    • @chiqui1234ok
      @chiqui1234ok Месяц назад

      Ok, I get body/post/form-urlencode variables thanks to:
      await c.req.parseBody()
      or:
      await c.req.formData()
      That's weird AF, anyone has another way to get form data? This way I showed you, looks sketchy. I never needed a Promise to get form data in NodeJs+Express lol

    • @chiqui1234ok
      @chiqui1234ok Месяц назад

      in "Validation" section they didn't mention (and even the data model seems different) we need to get body/form data in the way I showed you. :O Damn, something it's looking bad haha

  • @brtk7
    @brtk7 7 месяцев назад

    Could you compare Hono and tRPC? It appears they both have similar capabilities. Thanks!

  • @zenithdevgroup
    @zenithdevgroup 8 месяцев назад

    Have they solved Bun not working with SSH-ed25519? I couldn't use Bun due to my SSH dependencies not working with it.

  • @zb2747
    @zb2747 7 месяцев назад

    Being able to serve HTML using JSX instead of EJS or other template language is so good!!!

  • @npx_riff_lift-g
    @npx_riff_lift-g 3 месяца назад

    Same here. Bun + Hono is such a nice combo. Easy to work with, and holy f-- it’s performant.

  • @MattChinander
    @MattChinander 6 месяцев назад

    Where can this be deployed?

  • @carlosricardoziegler2650
    @carlosricardoziegler2650 9 месяцев назад +1

    How about ElisiaJS ? Some insights ?

    • @shiningview
      @shiningview 7 месяцев назад

      Its developed by one person. Just like express.js

  • @christianangelomsulit3759
    @christianangelomsulit3759 6 месяцев назад

    Is Bun.serve() necessary? when already using bun run --hot src/index.ts??

  • @superslash946
    @superslash946 4 месяца назад

    Pardon my incompetence, but why would you want to send jsx as a response?

    • @shantanukulkarni007
      @shantanukulkarni007 Месяц назад

      If you have a frontend in react then the frontend developer can simply make an empty page and backend developer can send some custom jsx webpage as a response, to be displayed in that empty frontend page. This could be very useful for authentication purpose

  • @LucasdosSantosWundervald
    @LucasdosSantosWundervald 8 месяцев назад

    Yeah, let`s call my managers and say to then that they need to change all their products to Bun and Hono hahahahaha

  • @elson_correia
    @elson_correia 8 месяцев назад

    express.js is like jQuery. It will never die

  • @WillDelish
    @WillDelish 9 месяцев назад +1

    Looove hono + bun combo. Also sprinkle some htmx and its pretty magical

  • @rec-trick
    @rec-trick 7 месяцев назад

    awesome

  • @anasaitzouinet9699
    @anasaitzouinet9699 4 месяца назад

    im always wanting to try bun , but i don't know if its stable for production yet or not

  • @BunnyMolester
    @BunnyMolester 5 месяцев назад

    Hey Sam, how can we connect to a database while calling APIs

  • @flipperiflop
    @flipperiflop 9 месяцев назад +1

    Damn, Hono looks incredible!

  • @chhinsras
    @chhinsras 6 месяцев назад

    how to make something like nodemon with hono + node

  • @ashimov1970
    @ashimov1970 6 месяцев назад

    why hono, not bun-native elysia?

  • @boot-strapper
    @boot-strapper 7 месяцев назад

    Elysia is the best one I have ever found

  • @Bookingtr
    @Bookingtr 8 месяцев назад

    With qwik can be good solution for full stack, how about SSR, IRS kinda things like NextJS. Thanks for tutorial, keep it up 🎉

  • @seoky6
    @seoky6 Месяц назад

    Have you tried ElysiaJS?

  • @elephant_888
    @elephant_888 9 месяцев назад

    There’s a Safari bug that prevents Bun web servers from successfully sending binary downloads like images and files to that web browser. 😢

  • @oleksiistri8429
    @oleksiistri8429 8 месяцев назад

    idea about having context argument instead of req, res is actually convenient

  • @pedapudiraviteja7388
    @pedapudiraviteja7388 5 месяцев назад

    Which cli and cli font are you using? I'm so obsessed with the fonts, ain't I?

  • @nutrimindnutricion2474
    @nutrimindnutricion2474 3 месяца назад

    Please more of hono.js
    🙂

  • @JohnMcclaned
    @JohnMcclaned 9 месяцев назад +8

    How do you feel about there only being basically 1 contributor to bun? Do you still recommend bun for production even though it doesn't pass the bus test?

    • @perc-ai
      @perc-ai 7 месяцев назад +2

      Nope use deno …

  • @ronaldtejada8846
    @ronaldtejada8846 5 месяцев назад

    I'm interested in hono + react app and how the live together and interact

  • @NattaWang
    @NattaWang 8 месяцев назад

    bun update command not update version numbers in package.json in my local, do you know how to fix it?

  • @JacksonMarshal
    @JacksonMarshal 8 месяцев назад

    Bun is great, but it doesn't work with Windows yet. :(

  • @patrick_kabwe
    @patrick_kabwe 9 месяцев назад +2

    Hi Sam,
    have you built a production app with bun? if yes how has been your experience?

    • @SamMeechWard
      @SamMeechWard  9 месяцев назад +2

      It’s been awesome, only great things to say about using bun. I’ve been deploying to fly.io.

    • @patrick_kabwe
      @patrick_kabwe 9 месяцев назад

      @@SamMeechWard Wow! will definitely try it. Thanks

    • @mdmathewdc
      @mdmathewdc 9 месяцев назад +2

      Definites on what a production app is - if you mean an app with thousands of live users, then Bun isn't stable for that.

    • @patrick_kabwe
      @patrick_kabwe 9 месяцев назад

      @@mdmathewdc Please share your experience.

    • @blender_wiki
      @blender_wiki 8 месяцев назад +1

      We have few public API running with bun, it is just great.

  • @andgo-fabian
    @andgo-fabian 5 месяцев назад

    Why is everybody suddenly using bun? I am glad I didn't get on the deno train now that bun is the next cool thing. I will probably also be happy not having jumped on the bun train once its hype goes down and to just having stuck to npm which is the most proven.

  • @brunoacev
    @brunoacev 9 месяцев назад +1

    that is soo good dud, i see yesterday.

  • @RickoDeSea
    @RickoDeSea 4 месяца назад

    Make the tutorial with Vite and Hono

  • @ArielBenichou
    @ArielBenichou 4 месяца назад

    ok you've sold me!
    next project will be with hono (bun i already use :D)

  • @harryzachariou1
    @harryzachariou1 8 месяцев назад

    This is great! Is there support to integrate Bun into a AWS lambda runtime and Hono into an AWS lambda proxy?