Not able to it. When i am running the command - ng add @nguniversal/express-engine It says Packages installation failed giving warning as 1. Unable to find compatible package. Using 'latest' tag. 2. Package has unmet peer dependencies. Adding the package may not succeed.
@anandkothari27132 жыл бұрын
I have an angular 8 SSR app that causes memory leaks on the server it keeps on increasing memory on the server when the application is in use and opened by many users.Also I have Unsubscribe all the subscriptions on ngOnDestroy but doesn't work, still memory leaks persist Not able to find whats the issue and whats the correct way to solve the problem Please help
@ahsanjutt64192 жыл бұрын
npm run prod:ssr is not working with npm run serve:ssr? any idea
@oldfootage4 жыл бұрын
So just to test things out after build:ssr I did this. 1) I edited dist/server/main.ts I changed 'home works!' to 'home-server works!'. 2) I edited dist/browser/main.***.ts I changed 'home works!' to 'home-browser works!'. Then I ran serve:ssr. I set the browser to localhost:4000. Pressing the home button shows "home-browser works'. This indicates to me that serve:ssr runs the dist/browser version of the code not the dist/server version of the code as one would expect. I did some research and found out that main.ts in server quickly redirects to the browser main.***.ts. This gives one the feeling that SEO will work in theory but in practice search engine crawlers do not use Javascript. What really needs to be done is npm run prerender. It creates a different structure in dist than this video proposes. I performed the above checks with prerender and tested by turning javascript off in chrome. I saw home-server works on the browser. So that proves it works!
@vijaykumarm96 Жыл бұрын
i got a big error when trying to run dev:ssr. It sems like the whole main.js file is getting printed in console. So when i try to serve it ReferenceError: self is not defined referring to main.js file
@FunOfHeuristic Жыл бұрын
Have you tried the npm run build, before dev:ssr
@baidyanathpanda19646 ай бұрын
Clear explanation!
@deepakkumarsharma27232 жыл бұрын
Angular SSR is slow, is there any option to make it fast
@convolutionalnn25823 жыл бұрын
How can i use both csr + ssr
@cledohitechfamiely87972 жыл бұрын
you video has reached every where and is helpful thank for this you are a good 👍 teacher
@shivanibutola76203 жыл бұрын
I got document is undefined error Please help.,. 🙄
@mjdev-i1p2 жыл бұрын
I really like your explenation about SSR .. nice and easy to follow
@Aniketmodker2 жыл бұрын
Good job, Keep it up
@dhavalmistry69292 жыл бұрын
Thanks mate.
@arghyack3 жыл бұрын
after done Universal SSR my deb uploaded on same server where my main files are runing. i don't know but runing well and all working good. but i have one problem after scanning with Screaming Frog SEO Spider or some tools. same result happen only 1 main web site links is there. how to solve it
@prabhuraja84873 жыл бұрын
Hi.. This --proxy-config proxy.conf.json working only for normal Angular. But how to add proxy config for SSR?
@pradhandigitech143 жыл бұрын
This is mindblowing
@yogialexiusn41303 жыл бұрын
how to build then? with ng build?
@skyzane27352 жыл бұрын
This is not working when there is browser animation. I mean installation couldnt resolve peer dependencies while adding @nguniversal/express-engine
@mises98634 жыл бұрын
Got problem SSR are not working on serve:ssr command. On dev:ssr is ok.
@madhursuryawanshi3924 жыл бұрын
Thank you so much brother
@kaushalzod51623 жыл бұрын
Hey i uploaded my website on azure static web but after that my routes are not working due to prerendering and idea how to solve that
@kalyanchatterjee86243 жыл бұрын
Great video! Subscribed.
@nanasarathi2 жыл бұрын
Very informative 👍 Thanks for sharing this video 🙏
@kumarkaruppaiah81713 жыл бұрын
Can we run angular universal SSR for only specific routes?
@ChrisDuebbert3 жыл бұрын
In Firebase it works like this: In Your firebase.json you can create several rewrites. Example: "rewrites": [ { "source": "/", "destination": "/index.html" }, { "source": "**", "function": "ssr" } ] } In this case all Routes except the home route are redirected to the Function for SSR
@lexa1682 жыл бұрын
Better tutorial then official one :D
@bennythazhutha3 жыл бұрын
is it possible to make only one module (ssr)
@FunOfHeuristic3 жыл бұрын
No, the whole application need to be render in server, there will be ways but it's not good practice.
@bennythazhutha3 жыл бұрын
@@FunOfHeuristic will you be able to suggest one way for me please?
@sanjaychouhan72584 жыл бұрын
sir i was do this on local first of all add angular universal in my app after that make ssr build and ssr serve then i'm getting the source code and then upload the dist folder on the server (inside it browser and server two folders are present) all browser files move to the main html directory and run this command pm2 start dist/server.js but cant see the source code of the page cant understand what to do...if u understand my problem then plz help me thanks in advance...
@rahulpawar4514 жыл бұрын
How to deploy prod 'build:ssr' has generated on AWS S3? There is a browser and server folder but which one should I upload on the server?
@FunOfHeuristic4 жыл бұрын
Both, server will access browser (folder) to render/generate html
@DeeClassroom3 жыл бұрын
Hi i have integrated universal to my existing project and hosted on firebase. Also i am using dynamic meta tags when changing router. I can see og meta tags in view souce. When sharing to fb some urls crawling and show fb card. But some url not crawling. Please let me know the reason.
@tedkossoko37472 жыл бұрын
Hello, did you succeed to make it work. I'm in the same situation. How did you do the migration from CSR to SSR. You keep both ?
@DeeClassroom2 жыл бұрын
@@tedkossoko3747 you need to prerender all routes in the npm build all
@tedkossoko37472 жыл бұрын
@@DeeClassroom What do you mean by pre render ?Thanks
@somnathjana51284 жыл бұрын
Great information.Waiting for how to deploy the application.thanks.
@seelasudheer44284 жыл бұрын
How to make for production this code
@parasdawar20423 жыл бұрын
Hi, I started creating just a front end app using universal but i have to access 3rd party API which is giving cors error. I created a mock node.js server to bypass cors for development purpose but what to do after deployment ? Thanks.
@FunOfHeuristic3 жыл бұрын
Cors error can be completely remove if server allow your url. But you can use no-cors(in fetch call) to disable.
@parasdawar20423 жыл бұрын
@@FunOfHeuristic Hi, can you help me out with an issue in which we have to make a third party api call on load itself which i am doing it in server.ts and then render the index.html with json. I am not able to understand how to receive api response on frontend. Thanks
@sanjaychouhan72584 жыл бұрын
sir i'm completely setup angular universal in my project. But when i'm uploading the build on the server then not get the source code of the page. Only get the source code on serve the app.
@FunOfHeuristic4 жыл бұрын
I will make a video on deployment of universal soon
@nareshsaini35113 жыл бұрын
how can i use both ssr and csr?
@ChetanGorane4 жыл бұрын
Thanks you save my time.
@vivekkumar-uo7pc2 жыл бұрын
Hi, I am exploring angular universal and I have one question, will it be possible to use angular universal for entire app?
@FunOfHeuristic2 жыл бұрын
Yes it should be for entire app, normal app is client side rendering and universal is server side rendering
@tabishbilal9464 жыл бұрын
I m asking you some question
@rohanvidhan84394 жыл бұрын
Good work Subrat
@sanjaychouhan72584 жыл бұрын
hello sir i have successfully installed ssr in my project.I just need a little bit of ur help. When i serve the ssr build then it show's only static data on the place of dynamic data it show like this . What i am doing wrong.Please help me to solve this isse. Thanks in advance
@FunOfHeuristic4 жыл бұрын
Dynamic data you mean data from api or data from your ts file.
@sanjaychouhan72584 жыл бұрын
@@FunOfHeuristic data from getting https apis is not showing in view page source.On place of it only show bindings.
@FunOfHeuristic4 жыл бұрын
It should work, any specific error you are getting, and how you are trying to render the object or array
@sanjaychouhan72584 жыл бұрын
@@FunOfHeuristic not getting any kind of error sir and as per need i render object as well as array on the place of dynamic content it show's nothing..cant understand how to get out of it. My git repo is github.com/iamsanjaychouhan/ssr if u have any idea then plz help me sir thanks for ur reply
@vidyasagargaikwad12683 жыл бұрын
How can we do SSR in big app which has authentication, session ( services, components and modules) please reply sir...🙏🙏🙏
@FunOfHeuristic3 жыл бұрын
I will try to make a vidoe on the same
@guillermomedel15753 жыл бұрын
Thank you. I couldn't figure out how to get my components to work
@sagarmahajan41514 жыл бұрын
I want to deploy the build with my pythonanywhere server. Where node server is not available. Is it possible to deploy ssr build without your node / express .
@FunOfHeuristic4 жыл бұрын
No, as it works with express, you can deploy the normal angular application.
@sagarmahajan41514 жыл бұрын
@@FunOfHeuristic I want to share pages on social networks so title and meta should be dynamic. Is there any other way to achieve that instead universal ?
@FunOfHeuristic4 жыл бұрын
For title you can use Title service provided by angular to change title dynamically, I need to check about meta tag, if I will find something I will reply here.
@sagarmahajan41514 жыл бұрын
@@FunOfHeuristic thanks for quick response. I am using titleservice and meta service now but without universal it is not working. Thanks again for your support. 🙂🙏🏽
@pranayamr4 жыл бұрын
Can I generate production build with both PWA/Service worker and App Shell both ? or this are separate features cannot be placed in one single production build. or yes i.e. can be generated can anyone please let me know how ?
@pihu20103 жыл бұрын
great video!!
@SuryakantMayekar4 жыл бұрын
Hey Hi, I have a query regarding angular universal, is there a way to use gsap (greensock) or jquery animation in my project after angular universal rendering..
@drakZes2 жыл бұрын
When you make a component and use it as a web page, does it's HTML also gets rendered if you apply SSR?
@davidjustice23233 жыл бұрын
Thank you!
@rn32274 жыл бұрын
how to implement it in already running project?
@FunOfHeuristic4 жыл бұрын
The process is same, but you have to test everything properly as all the things are not supported by universal.
@devvio38263 жыл бұрын
Nice
@philippebrunet21093 жыл бұрын
great tuto thx
@Semma_Bore4 жыл бұрын
Can you make a video on onPush change detection strategy. How to use it in our application and explain about it tricks and tips.
@FunOfHeuristic4 жыл бұрын
I will, thanks for the suggestion ☺️.
@Semma_Bore4 жыл бұрын
@@FunOfHeuristic No problem bro. I have searched in youtube i got basic usage of onPush change detection strategy. Thats why asked you
@sanjaychouhan72584 жыл бұрын
@@FunOfHeuristic i dont want to serve the app and see the page source bcoz its take too much time in loading i just want to upload the build and see the source code of the page for seo purpose.How to do it sir.Please resolve my issue
@kumaresanperumal2581 Жыл бұрын
angular 13 is not working
@FunOfHeuristic Жыл бұрын
Any specific error you are getting?
@drmanasdash68794 жыл бұрын
You've made it so easy, thank you for your efforts!
@mudititstudio5583 жыл бұрын
Error: You must pass in a NgModule or NgModuleFactory to be bootstrapped at View.engine (D: g\mudit\jabonline\dist\server.js:48567:23) at View.render (D: g\mudit\jabonline\dist\server.js:160914:8) at tryRender (D: g\mudit\jabonline\dist\server.js:156964:10) at Function.render (D: g\mudit\jabonline\dist\server.js:156916:3) at ServerResponse.render (D: g\mudit\jabonline\dist\server.js:168483:7) at D: g\mudit\jabonline\dist\server.js:138:9 at Layer.handle [as handle_request] (D: g\mudit\jabonline\dist\server.js:160342:5) at next (D: g\mudit\jabonline\dist\server.js:159263:13) at Route.dispatch (D: g\mudit\jabonline\dist\server.js:159238:3) at Layer.handle [as handle_request] (D: g\mudit\jabonline\dist\server.js:160342:5)
@hiralchovatiya18093 жыл бұрын
Hello sir, Nice to see the SSR, I follow steps but I am getting an error for sessionstorage and FormData in SSR.Can you help me for it sir?? Thanks
@prakashbtw6784 жыл бұрын
Hi, thanks for explanation. If possible please make lazy loading in angular SSR..
@mudititstudio5583 жыл бұрын
my project Error: You must pass in a NgModule or NgModuleFactory to be bootstrapped
@albertoarielarce29824 жыл бұрын
Thank a lot!!!
@aqkhana20022 жыл бұрын
Really lots of talk for nothing ? i am actually looking an example , in past i have issue with dynamic html render, say a complete page coming from database including javascript in it , how can i render that ?
@pavankumarkasa4 жыл бұрын
Nice Video Bro, I have some issue, as i am using API calls but unable to get the API Data in "View Source" it shows in Developer tools, please let me know is there any way to get the API data in View Source
@FunOfHeuristic4 жыл бұрын
Hi, do you mean you are not able to bind data to the view?
@pavankumarkasa4 жыл бұрын
@@FunOfHeuristic no, Data binding and every thing ok, but the data in the view is unable to view in view source, static content is displayed but dynamic content not visible in view source
@aniketsharma9444 жыл бұрын
@@FunOfHeuristic Yeah... I'm Facing this error too "NetworkError at XMLHttpRequest.send" means Angular universal is not able to get data from api on the server whether it is a relative url or absolute url...!!!
@FunOfHeuristic4 жыл бұрын
I will make a video on the same.
@aniketsharma9444 жыл бұрын
@@FunOfHeuristic Got it Done Bro!! Following this guide github.com/angular/universal/blob/master/docs/transfer-http.md And Making Absolute Url Calls i.e- "ww..." . If you'll be making the video for the same please do suggest the best way to use same server api... Thanks!!😇
@oldfootage4 жыл бұрын
Does SEO work just as well with dist/browser (CSR) as dist/server (SSR)? If I want my website to be SEO friendly does it need to be run on a server using node?
@FunOfHeuristic4 жыл бұрын
Short answer is yes, if you want to cover all search engines then you should reder your html in server side for Angular
@ferreirabinho3 жыл бұрын
Great video man, can you make one showing how to configure and deploy with docker?
@adigunademola83602 жыл бұрын
Yes please! Is the video up yet?!
@tedkossoko37472 жыл бұрын
@@adigunademola8360 no. Do you find an example. I'm working on it to push on Docker.
@sujoyinnovates2 жыл бұрын
Bhai theory na btake troubleshooting btata to acha hota.
@shayanpaul34303 жыл бұрын
Say Is, Using and Browser please 😝
@mrr41814 жыл бұрын
atleast provide subtitles
@lipunpatel59372 жыл бұрын
you do lot's of talk. instead code and explain. Not so useful video.
@collinsfreitas2 жыл бұрын
One of the worst english pronunciation I ever heard but but thanks buy the way.
@moiseskerschener26344 жыл бұрын
What's that weird broken accent? Geez that's very annoying. Bye!
@bennythazhutha3 жыл бұрын
im getting issues on using localstorage and window (), is there a global fix for these?
@FunOfHeuristic3 жыл бұрын
You can use OpaqueToken from angular to use the functionality, because window is not available in chrome.