Angular 17 SSR - Angular Server Side Rendering in a New Way

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 พ.ย. 2024

ความคิดเห็น •

  • @MonsterlessonsAcademy
    @MonsterlessonsAcademy  2 หลายเดือนก่อน

    WATCH NEXT: Angular Interview Questions and Answers - Dominate Your Next Interview - th-cam.com/video/5A_YKlVWMPo/w-d-xo.htmlsi=2DCn7yspEAAJ2H6l

  • @farrukh.
    @farrukh. 10 หลายเดือนก่อน +4

    Nice video and clear explanation! btw you can create a wrapper for the local storage and use it through a provider in your app, so you can check if storage available only once and set a fallback where it's not available ex. during SSR

  • @ymrlk
    @ymrlk ปีที่แล้ว +3

    Hi mate. Cool video of representing Angular SSR and it's perks. Here is a thing and suggestion what about to make a video which will show how to setup Angular 17 and NestJS in one codebase. Currently Angular 17 is typically using ExpressJS under the hood to serve backend. Waiting for new videos. Take care:)

  • @kylerjohnson988
    @kylerjohnson988 ปีที่แล้ว +2

    This is a well structured video and it does a great job explaining how SSR works in Angular.
    I think the RxJS part of the code should be improved to teach a better architecture. Subscribing to the data source and then setting a local component property in the callback isn’t declarative. In this case, the source observable is a HTTP request so it completes on its own, but if it’s a behavior subject or something like that, subscribing in this way without unsubscribing would cause memory leaks. To address both problems, don’t explicitly subscribe to the data stream at all. Instead set a local property equal to the source observable and subscribe in the template using the async pipe. That way, your property is completely declarative and the framework handles the subscription for you with the async pipe.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  ปีที่แล้ว +2

      You are totally right but I already made lots of videos about async, unsubcribe, etc. This video is not about that.

    • @kylerjohnson988
      @kylerjohnson988 ปีที่แล้ว +1

      @@MonsterlessonsAcademy that’s great. I’d recommend consistently using the async pipe to manage subscriptions. As a content creator myself, I’ve learned that people will see your explicit subscriptions here and run with that pattern without watching all of your videos. Just a suggestion. The format of the videos are great, your pacing is awesome, and I really like the way you progress through the material in a way that I think people will find easily digestible. Overall, great stuff!

    • @JokeryEU
      @JokeryEU ปีที่แล้ว

      agree@@kylerjohnson988

    • @LarsRyeJeppesen
      @LarsRyeJeppesen ปีที่แล้ว +1

      ​@@kylerjohnson988async pipe? .. nah bro that is so 2022

    • @kylerjohnson988
      @kylerjohnson988 ปีที่แล้ว +1

      Not at all. That's the only angular native way to avoid explicit subscribes and have the framework manage the subscription for you. From a library perspective, rx-angular or ngrx has APIs that offer a better way to do this, but as it is the async pipe is the only angular native way@@LarsRyeJeppesen

  • @danielvega646
    @danielvega646 3 หลายเดือนก่อน

    Angular 17 is the GOAT.

  • @codeandcloud
    @codeandcloud ปีที่แล้ว

    Great video. Thanks
    You forgot to mention this I guess.
    "You should always explicitly specify a non-default phase, or you risk significant performance degradation."

  • @sasushi
    @sasushi 11 หลายเดือนก่อน +1

    Wow, great video. Will benefit from this. Thanks!
    One question, what kind of IDE or tool do you use, to navigate the file system in the code editor or terminal?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  11 หลายเดือนก่อน +1

      It's vim. I already made videos about it
      th-cam.com/video/j6uqOvTRq6I/w-d-xo.html
      th-cam.com/video/YrLiugDhCuk/w-d-xo.html
      th-cam.com/video/Xa4aOOB7XZo/w-d-xo.html

  • @MrJeszam
    @MrJeszam ปีที่แล้ว

    I am overwhelmed with this new feature. Hope I can catch up.

  • @yussefbens
    @yussefbens ปีที่แล้ว +1

    thank you for this video! I have a question please, what if I'm using firebase to fetch data instead of httpclient?

  • @02jaysenghani
    @02jaysenghani 8 หลายเดือนก่อน

    I appreciate the video.
    Could you perhaps make a video explaining how to install the Angular 17 SSR app on Firebase?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  8 หลายเดือนก่อน

      I will add it to the list of ideas

    • @02jaysenghani
      @02jaysenghani 8 หลายเดือนก่อน

      @@MonsterlessonsAcademy Thanks for considering the idea! I actually found a way to implement Angular 17 SSR on Firebase. Your videos are always informative, and I look forward to seeing more content on your channel.

  • @mypreciouz5634
    @mypreciouz5634 ปีที่แล้ว +2

    So if we choose server side rendering, we need to wrap our localStorage, window, document codes in a wrapper to prove we are in a browser client. Good to know. I wonder do we still need to do it if we don't apply server side rendering? anyone knows?
    Edit: I just created a new app with no ssr. Turns out you don't need a wrapper. Wrapper function are not defined anyway.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  ปีที่แล้ว +2

      Why do you want to wrap it if you don't have server side rendering? you always have ls, window and document in browser.

    • @AlphaFrog1021
      @AlphaFrog1021 10 หลายเดือนก่อน

      you can use DOCUMENT token provided by angular that works on the server, as for localstorage I think you just need to add check if platform is browser or not by using isPlatformBrowser(inject(platformId)). and you only need those checks if you're accessing browser native apis at application startup

  • @onurismail
    @onurismail 11 หลายเดือนก่อน

    Thanks for the video. I have a question about it. Can we use the Standalone Components with SSR, do you have any information about this?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  11 หลายเดือนก่อน

      Yes we can

    • @onurismail
      @onurismail 11 หลายเดือนก่อน

      @@MonsterlessonsAcademy Is there an example code that I can examine by removing App.module with SSR+Standalone?

  • @metalllus
    @metalllus ปีที่แล้ว

    i would love to see a follow up video of changes in angular 17 ssr when used with firebase and how to deploy to firebase functions

  • @korayozyurt2341
    @korayozyurt2341 10 หลายเดือนก่อน

    Thanks for the video.
    How can we publish the project to nginx? I cannot find detailed explanation.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  10 หลายเดือนก่อน +2

      I will add it to the list of ideas for the next video.

    • @korayozyurt2341
      @korayozyurt2341 10 หลายเดือนก่อน +1

      @@MonsterlessonsAcademy thank you so much for reply to me, I solved the problem so I can help you if anyone want.
      And there is no resources about publishing angular so I think much people need the video if you add

  • @monjurmorshed2854
    @monjurmorshed2854 11 หลายเดือนก่อน

    Great video on SSR. Can you show us a simple demo for using GraphQL with Angular?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  11 หลายเดือนก่อน

      I will add it to the list of ideas for future videos.

  • @aneeshb8087
    @aneeshb8087 ปีที่แล้ว

    Hello Sir,
    I want to start over my carrer in web development. Will it be a good choice if I choose angular over react for future?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  ปีที่แล้ว

      Don't ask me. If you can find a lot of Angular jobs in your city then yes. If you find only React for example then no. You need to learn what is relevant for your city to find a job.

    • @codeme8016
      @codeme8016 ปีที่แล้ว

      In my opinion, if there are fewer jobs with Angular, it means there are less developers available as well which results in a higher salary and less competition to get a job. Angular is more structured and mostly needless of 3rd party libraries while React is more wild and more dependent on the 3rd party libraries. There are videos comparing both. In my opinion, Google have had more successful Web applications than Facebook. These frameworks are being created after these products are built and delivered.

  • @sfspmusic
    @sfspmusic 5 หลายเดือนก่อน

    Is it the same for angular 18?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  5 หลายเดือนก่อน +1

      Yes there are no changes regarding it in Angular 18

  • @kirklimbu
    @kirklimbu 5 หลายเดือนก่อน

    ng b doesnot build the project if we set up below configuration in project.json or angular.json file, Why??--->
    "prerender": true,
    "ssr": {
    "entry": "server.ts"
    }

  • @kirklimbu
    @kirklimbu 5 หลายเดือนก่อน

    Nice and informative video

  • @fastestnotes1046
    @fastestnotes1046 10 หลายเดือนก่อน

    I have no other option than to accept SSR as they built it. I just have a question about sitemaps to search engines, how would that work for millions of pages setup on a single project? I'll have to find out by myself, but if you have a best practice way I'm open to suggestions

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  10 หลายเดือนก่อน

      You build sitemap on backend. SSR doesn't help with that. You just need a route which collects your posts or anything that you want to add to sitemap and return an xml.

  • @pateldharmesh1361
    @pateldharmesh1361 11 หลายเดือนก่อน

    beneficial. simple and clear.

  • @wilsonmori949
    @wilsonmori949 8 หลายเดือนก่อน

    why are you calling 2 times API with Angular 17 SSR?, can you explain howe to use only server side call api an show info on the cleint?. Thanks for your video very helpfully

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  8 หลายเดือนก่อน

      I don't call the API twice. It is called on server and provides data on client and reuses it there

    • @wilsonmori949
      @wilsonmori949 8 หลายเดือนก่อน

      ​@@MonsterlessonsAcademy Sorry, it seems that I did not explain myself well, what I mean is that by placing only 1 call to the Angular 17 SSR API it makes 2 calls, one on the server side and one on the client side. And only when you call server side using "isPlatformBrowser(this.platformId)" it is not shown on the client. It's a problem I currently have.

  • @doubles6642
    @doubles6642 ปีที่แล้ว

    Thank you so much for this illustration, we would like to see a video about how to deploy angular 17 Ssr project,
    Struggling to deploy it on AWS amplify...
    If the project without any routes it will be deployed as Ssr,
    If it has routes, it will be only Spa, I hope this is a flaw in amplify not angular 😅

  • @theGoldyMan
    @theGoldyMan ปีที่แล้ว

    How this will work with ngrx? Will the server be able to write and read of server-side ngrx state. If so, how to transfer this data to the client side ngrx state

  • @chandh_the_moon9224
    @chandh_the_moon9224 5 หลายเดือนก่อน

    Hey Hi. I have an issue with dynamic data rendering on the page. Can you please guide me on this, I can connect personally.

  • @CodingAbroad
    @CodingAbroad 11 หลายเดือนก่อน

    Thanks for the video. A few questions:
    1) Is there an equivalent to afterNextRender for server only? Like beforeNextRender?
    2) When deploying an ssr site do we just do ng build? Universal had a long and convoluted build line

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  11 หลายเดือนก่อน

      1. I don't think so
      2. Yes but Angular building time was always super slow even without ssr

    • @Kirdaro
      @Kirdaro 9 หลายเดือนก่อน

      ​@@MonsterlessonsAcademynow it faster than React.

  • @AliHassan-sm1cv
    @AliHassan-sm1cv 5 หลายเดือนก่อน

    Sir I have a question other tutorials I saw there are different command for run the angular 17 app as server side rendering on local:4200 but you run the app with npm start which is actually ng serve and run the app as server side i also do this this works for me but there is any other ways to separate this like angular universals

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  5 หลายเดือนก่อน

      I didn't look for this as I never needed such use case.

    • @AliHassan-sm1cv
      @AliHassan-sm1cv 5 หลายเดือนก่อน

      @@MonsterlessonsAcademy Sir, I have a confusion regarding Angular 17 SSR. After creating an Angular 17 SSR application, is it true that we cannot run the application in a simple mode and it can only be run in SSR mode? Additionally, how do we create builds for production and development environments?

  • @cngz7367
    @cngz7367 6 หลายเดือนก่อน

    Thanks for the video.
    In minute 7:52 you can see an error (HttpErrorResponse) in the terminal. I also get this error. Have you found an explanation / solution for this error?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  6 หลายเดือนก่อน +1

      Yes http client doesn't use fetch API by default. As it is native way for node/browser it makes sense to add it

    • @cngz7367
      @cngz7367 6 หลายเดือนก่อน

      @@MonsterlessonsAcademy Here is an addendum from me:
      withFetch() has already been added for me. However, I still had this error.
      I changed the api url from localhost to 127.0.0.1 and the error is gone :)

  • @vladwolf444
    @vladwolf444 11 หลายเดือนก่อน

    How can I run a component without ssr? For example, I need SSR only for the first page of the portal, for the others I don’t need it

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  11 หลายเดือนก่อน

      You can't. What you can do is wrap some code in if(isPlatform) or afterNextRender()

  • @esmaelmohamed8209
    @esmaelmohamed8209 10 หลายเดือนก่อน +1

    Hi mate. I appreciate what you're doing for the community; yet i do have a problem on following your material since your IDE is very Intimidating also you're so fast at the time of explanation.
    Sir at list you may show how to setup or basic usages of your IDE of why don't you use common IDE like VS Code during your teaching time?! If you did for the benefit of community better to use commonly used Tools.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  10 หลายเดือนก่อน +1

      It might be that my pace or IDE is not for everybody. I'm not using vscode because during the time that I use Vim people switched between Sublime, Atom, Vscode and there will come something new again. It is not comfortable to me to jump between editors every time when it become popular.

    • @esmaelmohamed8209
      @esmaelmohamed8209 10 หลายเดือนก่อน

      It's not because of popularity its difficulty, or teach us. I thought you are looking to help the community. Those skilled one didn't come to TH-cam they do have luxury of finance. Consider the unfortunate community.

    • @esmaelmohamed8209
      @esmaelmohamed8209 10 หลายเดือนก่อน

      The point you mention also interesting you are evolving from programming language perspective Angular, React, Vue.. version by version, why don't IDE? You use English language because to address more community otherwise you may use your country language. So to address more community you should use commonly used tools. That's the right way to do. I thought people came to TH-cam to help the community not to show how they are smart. Being smart it's not being right. Changing one average developer life worth a lot than be cleaver.

    • @Simon-yf7fo
      @Simon-yf7fo 9 หลายเดือนก่อน +1

      @@esmaelmohamed8209 Why would the IDE matter? The code works the same and the whole video is about the code and not the IDE. What you are requesting is comparable to saying "Use the light theme and not the dark theme.", because both of these two things don't change how the code behaves.

  • @farouktouil5036
    @farouktouil5036 ปีที่แล้ว

    It's comming for angular hope so

  • @sharongershoni
    @sharongershoni 10 หลายเดือนก่อน

    Thanks!

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  10 หลายเดือนก่อน

      Thank you so much for your support. It means a lot to me!

  • @andreil37
    @andreil37 ปีที่แล้ว

    Can you make a video on Angular 17 SSR with webpack plugins?

  • @ikbo
    @ikbo 7 หลายเดือนก่อน

    does angular do streaming ssr like react via suspense?

  • @MultiWarrr
    @MultiWarrr ปีที่แล้ว

    You knock doors of un common imp topics. Can you make video on angular http client features when using apollo angular

  • @chathurawewelwala4439
    @chathurawewelwala4439 9 หลายเดือนก่อน

    How can we have a SSR for some routs and CSR for others ?

  • @obinnaezedei856
    @obinnaezedei856 10 หลายเดือนก่อน

    How do I use Nestjs out of the box and not just express?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  10 หลายเดือนก่อน

      Dunno, why? It's for rendering your angular SSR not to make API for your project. If you need NestJS for backend just do additional API for that.

  • @exploteldeveloper
    @exploteldeveloper ปีที่แล้ว +1

    Thanks, very explicit. I wanted to migrate a very large project to SSR to gain speed on the first loading (the main.js file tends towards 3MB despite multiple optimizations). But I was faced with too many errors, particularly regarding cookies/storages and certain packages seem not to be compatible. I had to put that aside for now. It would be really great if you make a video on tips for migrating a CSR to SSR project.

    • @stupidddd
      @stupidddd ปีที่แล้ว

      Honestly migration video would be very useful

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  ปีที่แล้ว +1

      Unfortunately it depends on the project and it's dependencies a lot but I will keep this topic in mind.

    • @exploteldeveloper
      @exploteldeveloper ปีที่แล้ว

      @@MonsterlessonsAcademy Please still SSR case, Is there an equivalent of afterNextRender that I could use in services or guards that are functional or not ? For prevent undefined storage error

  • @ChetanSharma-jy8om
    @ChetanSharma-jy8om 9 หลายเดือนก่อน

    How to tranfer raw request to angular component from server.ts

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  9 หลายเดือนก่อน

      If by raw request you means database request then you can't. You can only use API request like you typically do.

  • @LarsRyeJeppesen
    @LarsRyeJeppesen ปีที่แล้ว

    Unfortunately ssr and i18n do not work without lots of workaround code

  • @m.1-n5c
    @m.1-n5c 6 วันที่ผ่านมา

    Great video , can you share source code

  • @АлимовАльберт
    @АлимовАльберт 11 หลายเดือนก่อน

    Добрый день) можно такой же ролик на нашем. Брал у Вас курс на Удеми по Angular и NgRx. Если запишете новый курс с учетом тех изменений которые поисходят с Angular(имею ввиду signals, ssr, ngif и т.д. ) заберу с руками. С уважением Ваш клиент.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  11 หลายเดือนก่อน

      Добрый день, русского контента и курсов больше не будет.

    • @АлимовАльберт
      @АлимовАльберт 11 หลายเดือนก่อน

      @@MonsterlessonsAcademy на українському теж було б гарно, все одно дякую що робите контент , сигнали вже знайшов у попередніх роликах) будемо вивчати англійску

  • @l.e.nichols9382
    @l.e.nichols9382 8 หลายเดือนก่อน

    im still confused! 😕

  • @alifnaiech6972
    @alifnaiech6972 ปีที่แล้ว +2

    first comment

  • @esmaelmohamed8209
    @esmaelmohamed8209 10 หลายเดือนก่อน

    I don't know why people use their comfortable tool instead of community commonly used tool once they appeared on public platform like TH-cam?!. Learning material it's not movie. This one is Just a movie for me which i don't know what he is doing which keyboard he is pressing... I only see how the gentleman is smart. Just a movie.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  10 หลายเดือนก่อน +2

      Well in 9 years I got less than 10 comments that people want me to change my editor in videos to vscode. 99.9% people are satisfied with my content and my courses. I don't see a reason to change anything if most of my students are satisfied.

    • @esmaelmohamed8209
      @esmaelmohamed8209 10 หลายเดือนก่อน

      @@MonsterlessonsAcademy Good luck Sir! You are always right. Let alone my suggestion my life doesn't worth for you, that what i know.

  • @joshbedo8291
    @joshbedo8291 10 หลายเดือนก่อน +1

    Writing conditional logic for server/client is a terrible idea and an easy way to miss bugs. For example you typically navigate routes through the client so you'd never see server-side rendering issues that happen only during a hard refresh and most devs don't even know to check client routing and hard refreshes because its so new so it creates a lot of hidden bugs. Should generally keep server/client components separate so it's more predictable.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  10 หลายเดือนก่อน

      I don't agree on that as I don't see a point to create separate server or client components when SSR is done to execute any component on either side.

    • @MrJeszam
      @MrJeszam 10 หลายเดือนก่อน

      Ahh I see what you mean. And it is really annoying everytime I refresh the page. What I did is, I cover the layout with white bg (position : absolute; top; 0, bottom: 0; z-index .... width: 100%, opacity: 1 ) and then I create a function just to check if it is isPlatformBrowser, it will reflect the changes. Just use [class.opacity-0]="isBrowserLoaded()"

    • @skaggaboom
      @skaggaboom 6 หลายเดือนก่อน

      PHP I'm coming to visit (although we parted in the early 2000s). You've got server/client structure (although we kicked butt w/o that crap), you always got the job done, weren't fussy, were fun to work with and you never got in the way. We've got a lot of catching up to do!

  • @zoltarianie
    @zoltarianie 7 หลายเดือนก่อน

    twój ruski jest tak słaby ze nie idzie cie zrozumieć

  • @African_psycho
    @African_psycho 10 หลายเดือนก่อน

    Great Video! is it possible to get how to upgrade an existing angular project (v .12) using ssr to angular v. 17 ?