Modern monoliths: SPA and API in a single codebase

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

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

  • @dominuskelvin
    @dominuskelvin Год назад +10

    Inertia makes The Boring JavaScript Stack possible and it really is a modern way to build SPAs.

  • @danimatuko
    @danimatuko Год назад +3

    Very nice introduction, and it's really interesting.
    Btw, can you share your theme and font? They're nice.

  • @juanmacias5922
    @juanmacias5922 Год назад +4

    Dang, that's sleek! I'll have to look into Inertia.

    • @aschmelyun
      @aschmelyun  Год назад +2

      You definitely should! I haven't been disappointed with the stack yet. It honestly takes the tedious parts out of frontend dev and leaves the best.

    • @juanmacias5922
      @juanmacias5922 Год назад

      @@aschmelyun Any suggestions on cheap hosting for portfolio projects using Inertia?

  • @PaoloOrsato
    @PaoloOrsato Год назад +3

    Hi
    Do you think Inertia be suitable for a blog magazine website long-term compared to Laravel API and React frontend seperately? What kind of problems can we bump into using Inertia if the project becomes big?

    • @blessdarah1256
      @blessdarah1256 Год назад +4

      Remember that this is you building a SPA without having to build a separate API. So if in the long run you will need to develop something like a mobile app, then inertia is not sutied for you because your mobile tenant needs access to your API.

    • @skia515
      @skia515 Год назад

      @@blessdarah1256exactly. this technology is made to make SPA without API, but for a big and long term website that maybe need a mobile application too, it’s not a good choice, cause actually you need to extracting datas one time and using in different devices like phone. but if you need just a website, it’s good

    • @aschmelyun
      @aschmelyun  Год назад +3

      I'll agree with the comments responding to this that if you grow and need a separate API it's kind of redundant. But at the same time, you can have your API and SPA routes in the same codebase.
      Instead of having duplicate blocks that fetch the same data, you can abstract that out to a data object layer so you have a single point to update.
      For me personally, I've built a few large projects on Inertia (including a blog/online magazine) and haven't ran into any issues with performance or scalability. SSR out of the box with Inertia also greatly improved SEO.

    • @blessdarah1256
      @blessdarah1256 Год назад

      @@aschmelyun yes having a separate service layer to handle that also works pretty well.

    • @SXsoft99
      @SXsoft99 Год назад +1

      @@blessdarah1256 if you don't put your logic in controllers, you just need to double the response in a API controller

  • @HydeJekyl-gb1cb
    @HydeJekyl-gb1cb 7 месяцев назад

    Hi. Please tell me what vscode theme you use in this video? Many thank

  • @kwasiezor1630
    @kwasiezor1630 Год назад

    Yeah. I like the idea that is great befenit to have a monolith app than using 2 different stacks. I'm great fan of real and laravel. So I will be a real pleasure, if you can help us learn more about inertiajs. 😊 Thanks

  • @blender_wiki
    @blender_wiki Год назад

    Maintenance of microservices is notably easier and more efficient compared to a monolithic structure. The microservices architecture facilitates streamlined processes for staging, testing, and deployment. Redundancy in code architecture often indicates weaknesses in its design.
    However, it's essential to note that "inertia" is a valuable and versatile library, offering substantial benefits to various projects, though perhaps not exactly for the reasons presented here.

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

    Damn your channel is good, start making more videos

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

    Hello Andrew I saw your project on TV 😅

  • @Dommmin
    @Dommmin Год назад

    Hi, can you share source code? I want to compare next.js and inertia.

  • @bartellconstantin6747
    @bartellconstantin6747 Год назад +2

    I really need Inertiajs tutorials using reactjs because i do not want to leave Vuejs

    • @blessdarah1256
      @blessdarah1256 Год назад +1

      I’m currently working with React and Inertia

  • @amined801
    @amined801 Год назад

    is Inertia works well with SEO?

    • @drugoviic
      @drugoviic Год назад +3

      inertia has support for SSR so yes

  • @yashasvprajapati6851
    @yashasvprajapati6851 Год назад

    you can use nextjs 14/13 to build your backend and frontend inside one project itself.

  • @sk4yb3n
    @sk4yb3n Год назад

    The only drawback is that your routes are exposed publicly, keep that in mind

    • @JagdeepSinghKalsi
      @JagdeepSinghKalsi Год назад +1

      As in - the 99% of the web ?

    • @dominuskelvin
      @dominuskelvin Год назад +2

      Not really. You can set up policies or guards for authenticated requests

    • @JagdeepSinghKalsi
      @JagdeepSinghKalsi Год назад

      @@dominuskelvin I guess I see your point - thanks!
      Will see if there is a way to prevent this.

  • @bohdan.vorona
    @bohdan.vorona Год назад

    It's toooo complicated 😢 You could just use Laravel with Blade…

    • @Icodestuff
      @Icodestuff Год назад +5

      inertia is very simple... Plus makes your application much more interactive than plain blade

    • @DevPenguinBD
      @DevPenguinBD Год назад

      😅😅🙃🙃

    • @drugoviic
      @drugoviic Год назад +2

      id recommend livewire, you can just wire:navigate between your blade components

    • @tanzimibthesam5861
      @tanzimibthesam5861 Год назад

      @@drugoviic did you face performance issues with Livewire?

    • @aschmelyun
      @aschmelyun  Год назад +1

      Livewire is great, but if you enjoy (or have to) work with React/Vue, Inertia just makes it a better experience imo