I’m at an agency, work with lots of different tech depending on the client, and am the local Angular expert on staff. We build most of our new products in Next. It’s lightweight, flexible, easily deployable, the Vercel ecosystem is great and when you need to introduce a specific thing, there is a package available. Angular has the most divisive opinions of any FE tech imo. It’s feature richness is great, if you plan on using those features. If you don’t, then you’re left with a ton of unnecessary boilerplate that slows down development. We are firm believers in picking the technology for the problem, not sticking to a certain tech because we know it. My advice would be to learn new tech and stay flexible to what you’re using. Answer from ChrlieTngoFxtrotOscr on reddit.com
🌐
Reddit
reddit.com › r/nextjs › any good reasons to choose next.js over angular?
r/nextjs on Reddit: Any good reasons to choose Next.js over Angular?
April 4, 2022 -

So far the main reason I like Angular over react is because Angular is a full framework with everything included that you need to build front end applications. But I'm trying to compare it to Next.js which I have not used before. Next is also a full framework and and seems like it might handle seo with less work than Angular since it does SSR out of the box.

Anyone have reasons why they like Next.js over Angular or the other way around?

🌐
Reddit
reddit.com › r/angular2 › angular vs nextjs/react in 2025
r/Angular2 on Reddit: Angular vs NextJS/React in 2025
July 1, 2025 -

Yes this again! I was trying to leave a reply on another post but I guess my reply was to big.

I have been going back and forth between Angular and NextJS for the last few years. When starting a new project all is well and smooth at first with both frameworks but at some point I end up getting stuck on something. Here is what I can say from my experience so far.

Internationalization (i18n)

Angular has built in support for i18n which can take the text from your DOM directly and export them to translation files. NextJS has several libraries for i18n but all require you to use json files to define your messages to be translated. What I don't like in NextJS is that it requires you to do a lot of changes to your app's structure to achieve i18n. For example add logic to the single middleware file, add `(locale)` group to your app directory and move everything under there and use some i18n-specific routing functions. Also I have to import a different function each time to `useTranslations/getTranslations` depending whether I am in a server or client component. Personally I don't like this approach because it makes text hard to find and understand which text goes where. React however has a great ecosystem of vscode plugins that can help you with that mess.

On the other hand, Angular's built-in translation system will build one app per language and you essentially have to use some server directives (NGINX for example) to point to different urls/paths to display a language. That has been working great for me so far but the only drawback is that you can't have any server or remote file to use for translations since those are done on build time. It might be possible but I have never tried it.

Routing

I can't emphasize enough how much I hate routing in NextJS. It's a complete mess. Router groups, Layouts, Parallel routes, intercepting routes and so on. Even with years of experience, it is still hard for the eyes to look at a project and easily understand how everything is wired together. Also while developing, usually any changes to your app structure are not always reflected immediately and you more often than not have to restart your app to see the changes. Also what about when you want to use some specific guards/protections for a route? You have to add some custom logic into the middleware file which again is not ideal.

Angular's routing system is pretty good and flexible. You can apply a route guard through the `canActivate` param and that will also protect the children of that route. It's pretty flexible. The only real issue I faced with Angular's routing is that you don't have a generic/centralized way for handling 404 errors and redirects. Let's say for example you have a route `/blog/:slug` which gets a single blog post by `slug`. You have to manually add some logic in your resolver to handle any http error and do the redirects manually to the 404 page. I haven't found a nice way to generalize this behaviour so far.

Caching

Nextjs has a pretty decent caching mechanism for http requests and other things like memoized callbacks and computation. Even though it's a bit hard to understand at first, once you do it all makes sense and is flexible enough. In Angular there are very little helpers/tools for caching but you can always use signals or local variable in a service for example to check for cached data. That means doing a lot of manual work if you want to work with caching in Angular.

Data Submission

Angular has a very intuitive approach to building forms. Creating custom form controls is very easy and works very nicely with the built-in Forms Module. Honestly, it has been a pleasure working with forms in angular. What I usually do is create a wrapper `FormField` to use to display error messages and some other common things for form controls. Then by extending Angular's `ControlValueAccessor` I can literally create any kind of input component and reuse it in many forms. The only issue I faced working with custom form components is that sometimes change detection gets confused about a component value and you might run into some issues if you are not careful.

In React, there are several libraries that help you build forms and manage their state. They all work pretty good but you are required to write a lot of code and logic for each form which can be very frustrating when you have an app that uses a lot of forms like an admin dashboard for example.

Server Actions

NextJS can run server-only code and you can tightly bind forms to call a server function/action that will only run on the server. This sounds promising but trust me it is a nightmare to work with. I find my self always moving things around in my code because NextJS complains all the time - "This can't run on the server". "This can't run on the client", "The library uses node specific imports and I can't run that" and so on. In general, server actions are nice as long as you can deal with all those limitations.

Writing Components

React is easier and more efficient when it comes to writing your own components. No argument there. With that said, I still prefer Angular because I can work more efficiently when I need to use some common state/service. I can have all my state in a service (whether using signals or Observables/Subjects) and have several components react to those state changes. That brings me to my next point which is state management.

State Management

In Angular you can have signals and a shared service (which is provided in root context) and you can inject that service to any component that needs to use it. Now compare that with all the "Lifting the state up/down" and wrap everything in a Provider nonsense in React. That simply sucks - end of story.

Working in Monorepos

If you are ever building several apps in a single codebase that need to share code; Don't even bother using NextJS at all. You want to reuse a shared page in several apps? Good luck. You want to import some common routes/paths used in many apps? You can't. Another scenario where I found Angular better is when I wanted to reuse a library that contained some common images like logos and category images in several apps. In Angular you can just defined a wildcard path to your `project.json` and you can reference say `/shared-assets/images` path to anything in that library/path. In NextJS/React it is still possible to do that but you have to import the images into your code and use them as JSX components or something similar.

SSR and SEO

Both frameworks has good support for SSR. Don't pay attention to the articles that talk about NextJS SEO is better, it really doesn't matter. There are ways in both frameworks to export some Meta Tags in your DOM and server render a page. In NextJS however it's much easier

Performance

Unless you are building the next facebook/reddit or the next big thing there is no reason to bother with the performance. Both frameworks have excellent performance and the difference, if any, might be a 5-10ms. Your 10 users won't care or notice any difference and neither should you.

Ecosystem

NextJS and React have a larger community. If you ever need anything special, there is propably a library for that. In Angular however, I find my self building most things from scratch. I'm not using any Component libraries like Material or PrimeNG maybe that's why. Also you can't find many up-to-date tutorials for Angular compared to React.

Overall Developer Experience

Angular has a larger learning curve BUT once you get the hang of it you can trust that it won't change much in the next couple of years :). I can say that both frameworks have their frustration moments but I usually find my self in that situation more often with NextJS/React. That is usually because I have to use a lot of third-party libraries and sometimes it's hard to debug or event understand what's going on. On the long run, I spent more time reading when working with React.

Conclusion

Even though I lean more towards Angular, NextJS is a more popular choice and a larger community. Angular works for me because I am a freelancer and I have the option to choose what to work with. If someone was looking to get experience for a job then definitely you should learn React.

🌐
Reddit
reddit.com › r/nextjs › which one should i select next.js vs angular for my job portal website?
r/nextjs on Reddit: Which one should I select Next.js vs Angular for my job portal website?
November 2, 2024 -

I’m building a web app for a job portal specifically for school staff and I’m torn between using Next.js or Angular. My front-end developer is advocating for Angular, but others have mentioned that it’s better suited for larger projects and might be overkill for my needs. Additionally, I’ve heard that Next.js is faster than Angular—is that true? I’d appreciate any advice!

🌐
Reddit
reddit.com › r/angular2 › angular vs nextjs
r/Angular2 on Reddit: Angular VS NextJS
October 11, 2023 -

I would really like to know if someone with a extensive experience with both frameworks could explains the real selling point of one framework over another. All across the internet, I can only find the same arguments over and over again, "it depends on your needs", and so on. I'm a senior front end dev, doing NextJS for many years, and I was using AngularJS ten years ago, but have dislike it very much. I genuinely would like to know more about Angular.

🌐
Reddit
reddit.com › r/angular2 › any good reasons to choose angular over next.js?
r/Angular2 on Reddit: Any good reasons to choose Angular over Next.js?
February 22, 2022 -

So far the main reason I like Angular over react is because Angular is a full framework with everything included that you need to build front end applications. But I'm trying to compare it to Next.js which I have not used before. Next is also a full framework and and seems like it might handle seo with less work than Angular since it does SSR out of the box.

Anyone have reasons why they like Angular over Next.js or the other way around?

Edit: My use case is mostly for public web sites that I develop in my free time. Youtube and ecommerce style sites, etc.

🌐
Reddit
reddit.com › r/nextjs › angular vs next.js
r/nextjs on Reddit: Angular vs Next.js
September 10, 2024 -

Hi, I have been using Angular to create web apps for some time. I have built 3 MVPs and worked on a larger-scale Angular project as part of a team. Since I want to extend my career into freelancing, I’m looking to get into React and possibly Next.js.

I’ve played around with React, Next.js, and React on Astro.js, and so far, I’ve enjoyed it for simple use cases. Now, I have a new client for an MVP of a relatively small application, and I want to build it using Next.js to gain more experience. Even though the application is not very large right now, I want to design its architecture in a way that allows it to scale without becoming a mess.

I have a question: In Angular, when adding a feature (for example, in a Tender Management Application), I would first create the Tender type in the models folder. Then, I’d create a service that manages the logic and state of the tender—not just fetching data, but also handling the current tender data that gets manipulated across different parts of the app. This service would be injected into any component that needed access to or could modify that data. After that, I’d organize the components by their related features and set up routes. I would also lazy-load each feature to ensure the bundle size doesn't get too large as the app grows.

I’m not saying this is the only way to do it, or that I’m doing everything perfectly, but this approach generally keeps the Angular app clean, and I can easily add or remove features without things getting messy. Plus, after a break, it's easy to understand what’s going on.

Now that I’m new to Next.js and React, I’m trying to figure out how to structure an app at a larger scale. I’ve read about Redux, but it seems like overkill. I wonder if I can create something similar to services and use them as you would with dependency injection. Is it feasible, for example, to create a Zustand store for each feature’s state and import that?

How do you handle splitting up the app, similar to lazy loading in Angular?

Thanks in advance. I have talked to chatgpt but wanna hear real experiences.

🌐
Reddit
reddit.com › r/nextjs › nextjs ≈ angular?
r/nextjs on Reddit: NextJS ≈ Angular?
July 3, 2024 -

So I'm a developer of 10 years and 4 years of React. I never had the chance until recently to try out NextJS (v14).

NextJS is built, of course, on top of React, but the SSR and the whole surroundings features that NextJS provides you out of the box sounds good at the beginning, but I've encountered WAY too many bugs related to those features.

Now don't get me wrong, NextJS is NOT Angular, but due to the way that Angular comes out of the box with its own features, similarly to NextJS, I've noticed that the flexibility that React offers compared to Angular some times fades away, which leaves you no choice but to develop in a certain manner to match NextJS' methodologies.

Now this might be a good and a bad thing, because just like Angular, that consistency might lead to predictable and more readable code for those coming to another NextJS project. BUT, the first thing I noticed was reoccurring bugs, just like in Angular, which they either had no solution, due to the way Angular is built and you are left with the need to switch your developing techniques or needs, or had you find a REALLY terrible workaround (which in most cases was a workaround that many people had to do to overcome that specific issue) for that solution, which in the majority of the cases leads to code that is more complex than regular React but does the same thing as React to overcome the blockage that NextJS created.

Now this is just my opinion and I would love to hear your's on the matter.

For this project I decided to go back to React, but maybe when I'll feel that NextJS has developed a bit more flexible approach to come back to the flexibly that I love about React I'll come back.

🌐
Reddit
reddit.com › r/reactjs › learn angular or nextjs?
r/reactjs on Reddit: Learn Angular or NextJS?
January 3, 2021 -

Hello! I am a graduating student and a company offered me a job as a full stack developer. I'm planning to accept it and start working on August (after my graduation) unless I get a better offer. This company uses Angular for frontend. I have a basic knowledge in Angular but I'm more experienced and comfortable in React. To be honest, I like React more because of the community.

I have approximately 3 months to study anything related to frontend. Help me choose between diving deeper to Angular before my job starts or continuing React particularly NextJS. I'm thinking that if I choose to learn more about Angular now, my job will be easier. On the other hand, if I choose to learn NextJS, I can have more opportunities even outside my work (this is what I'm thinking since there are more opportunities with React - correct me if I'm wrong).

Find elsewhere
🌐
Reddit
reddit.com › r/dotnet › next js or angular for erp
r/dotnet on Reddit: Next JS or Angular for ERP
May 15, 2025 -

I am working in a company who has a ERP System which is now in angular js and for backend we are using .net core. I want to update the project where backend will be in modular monolith architecture. But i can not decide which will be better for frontend. Next JS/ React JS or Angular. Can suggest which one will be better?
TIA

🌐
Reddit
reddit.com › r/nextjs › angular universal vs next js
r/nextjs on Reddit: Angular Universal vs Next JS
November 2, 2022 -

I know this is very old debate but I want to know which is the best tech stack for my next project.

Building a Multivendor Ecommerce Platform for Web, iOS and Android. So I would like to use same code base for all these platforms and I don't want to use node js. My first priority is site speed.

React + Next Js + Capacitor
Angular + Angular Universal/SSR + Ionic or Capacitor

🌐
Reddit
reddit.com › r/reactjs › react is basically becoming angular...
r/reactjs on Reddit: React is basically becoming Angular...
January 27, 2024 -

Let me preface by saying, I respect what React did for the frontend dev scene, and I respect it a thousand times more for bringing us ReactNative which is amazing and I'm using it at the moment as someone with 10+ years experience in the industry.

However, I come from Java and other OOP languages in my early days and years ago at my firm, I was responsible for deciding whether we should adopt Angular (2+) or React.

I went with Angular because of TypeScript and it's general stability as a solid framework that came with everything in the box and easy upgrading from version to version. Ultimately, the opinionated nature of Angular was why I chose it because rules equal order and predictability.

As a company, I don't want Jimbo to walk in and debate that he's always built his React apps in this manner or pattern, I want the tool for the job to have a user manual that is to the point, and then I want my employees to focus their efforts on app specific logic, given that the tool (Angular) is fit for purpose which it was.

I always viewed React to be way too volatile where almost everything was valid, libraries upon libraries for each thing.

The only reason we adopted React was for ReactNative, it is a technical marvel in my opinion to use a similar stack to build web apps, mobiles, and potentially desktops (although we use Electron successfully with Angular).

Again, thinking as a company rather than an individual, I was flabbergasted as to why these major companies would not opt to use a unified stable tool (not even Angular specifically) instead of something so chaotic as React? I thought surely eventually there would be an opinionated way to get shit done with reasonable qualilty and move on.

FAST FORWARD TO TODAY

It appears that day has come, frameworks such as Next and Remix seem to finally "put down rules", de facto standards for React apps that makes the tool predictable from project to project and less prone to "user creativity".

By the way, this is completely normal in all areas of software development EXCEPT the React scene in the past 5 years so I think this sentiment is shared with much of the wider software development comunnities.

And now it's funny to see the React community praise frameworks like Next and Remix when in fact they've been mocking Angular for years because it's too "opinionated" and does "stuff magically under the hood"...

Again, I love React and especially React Native, and I hope my critiscism in this post is not received as "fanboyish" because that is the furthest thing from the truth.

What do you guys think, honestly?

—-

P.S

I’m not saying React is literally becoming an opinionated tool like Angular right now today (which I’d prefer but that’s besides the point), nor am I saying that you cannot still use it as it has been in the past, I am saying that the trend in what direction things are going in however is very clear and that’s what I wanted to raise a genuine conversation about to see what everyone thinks

🌐
Reddit
reddit.com › r/angular2 › angular 18 ssr vs nextjs
r/Angular2 on Reddit: Angular 18 SSR vs Nextjs
May 21, 2024 -

Any comparison videos or benchmarks that showcases loading speed of angular universal (SSR) vs nextjs? Just so I can understand the hype behind the usage of nextjs.

🌐
Reddit
reddit.com › r/javascript › [askjs] nest.js + next.js vs angular + nest.js
[AskJS] nest.js + next.js vs angular + nest.js : r/javascript
July 6, 2023 - Next.js is awesome for server-side rendering and static site generation, which can be really useful for SEO and performance. Angular, on the other hand, offers a more complete framework with a lot of built-in features, which might be handy if you’re looking for a full-featured front-end solution.
🌐
Reddit
reddit.com › r/reactjs › react, next, vue, angular, svelte?
r/reactjs on Reddit: React, Next, Vue, Angular, Svelte?
February 12, 2024 -

Hello, I've been studying JavaScript for several months and the time has come to choose a framework, so whenever I had time, I looked into and studied the concepts of React, Vue, Next.js, Angular, Svelte, and Web Component (Lit), and then tried using each of them. Personally, I did not like the direction of React and Next.js, but I found the experience of using JSX to be intuitive and liked it. However, I had a lot of resistance because of the direction towards SSR, RSC, the heavy bundle sizes, the experience being the opposite of web standards, and especially the feeling that Vercel dominates the framework. Also, personally, the enforced typing of TypeScript and the feeling of being against the flow for not using TypeScript despite the existence of JavaScript + JSDoc made me feel confused. In the midst of this, seeing that Svelte compiles to VanillaJS and having used it, I felt it was very smooth and good, so I have decided to continue studying Svelte up to now. Clearly, I think there will be a significant disadvantage in employment (Vue and React are very popular in my area), and there are only about a dozen jobs for Svelte compared to over 100,000 for React. Despite this, I would like to ask if it's okay for me to continue believing in and moving forward with Svelte. Also, I like the concept of web components, and I'm curious if the support in Lit + Svelte 5? is fully compatible. I would like to know what you think about the decision I've made personally. Thank you.

Top answer
1 of 14
18
First, a good developer picks a library/framework based on needs. While being good at one particular framework might be valuable in specific situations, I find developers to be far more easy to work with if they are flexible. Also, if you're worried about finding a job, Svelte isn't it right now - React, Angular and Vue still lead the current job market. Maybe one day, Svelte will be the dominant stack. Whatever your opinions about React/NextJS, the reality is that people don't necessarily pick something because they are good - things get picked because they are good enough. It's far more important for a business that whatever framework they chose have good community support and popularity. This makes it easier to find devs to hire, and find resources online when they get stuck on some edge case issue. Keep using Svelte for your personal projects, but you might find more luck finding a job by at least familiarizing yourself things like React. Also, note about TypeScript - there is a very good reason why this is the preferred development tool for a lot of devs. Maintaining a large JS project without static typing (and no, JSDoc is not a replacement for runtime error checking that TypeScript provides) quickly gets out of hand. If I recall correctly, JSDoc does not throw any IDE errors - it simply tells the user what signature something has. In TS, if you pass a wrong variable type to a function, the developer is immediately notified via IDE errors, which helps prevent bugs even before the code runs. Additional comment: If you're wondering whether sticking with Svelte is a good path, think about things from the employer's perspective. If you were an employer working with Svelte, and you were hiring one of two candidates; one is familiar with Svelte, and the other is familiar with React. They both seem to fit the work culture very well. You're probably going to pick the guy who has Svelte experience. That's the same with the employers.
2 of 14
12
In the midst of this, seeing that Svelte compiles to VanillaJS every framework compiles to "vanilla" js or else it wouldn't run. if you wanted to use the framework closest to "vanilla" then you'd use vue since it can be used without a build step. I like the concept of web components, and I'm curious if the support in Lit + Svelte 5? afaik, react is the only major framework that doesn't properly/fully support web components. but that's coming in react 19. personally i always recommend learning core js/ts first, then vue as a first framework. it supports both single file components and jsx while having a sane rendering model and a good amount of industry support. from there, svelte is easy to learn as it's sfc model is much the same, and svelte 5's runes now make it almost the same syntax as vue's composition api. if you go the jsx route, react shouldn't be too difficult to pick up as you now have the basic fundamentals of how a reactive frontend framework works. it still has its silly footguns but then you have the likes of solidjs that uses jsx but with signals, which can clean all that up. i know this is a react sub so i'll probably cop some disagreement by recommending vue, which is fine. all i ask is that you don't lock yourself into one framework and become a single framework dev, you're just doing yourself a disservice. try a bunch out, learn the pros/cons of each. sure pick a favorite, but have an understanding of each and different situations it may be best in. that said, at the end of the day, react has the larger ecosystem, better native tooling (react native vs. nativescript/capacitor) and more jobs.
🌐
Reddit
reddit.com › r/csharp › blazor vs nextjs vs react vs angular
r/csharp on Reddit: Blazor vs NextJs vs React vs Angular
November 18, 2023 -

Which one should I choose if I want to build my own application, product considering I can do anything I want on user web interface and flexibility to deal with interactive elements on web application.

Top answer
1 of 5
17
If you are asking for reasons of employment, check job boards/listings in your area and see what you see as far as demand goes. if you see 10 angular postings and 200 react postings...theres your answer. If you are asking because you just want to learn new stuff, this sub will say blazor because its a c# sub and its a new tool. I tinkered with it, don't know enough to recommend it, i've seen enough posts from people who are using it in a production environment that i wouldnt use it for a client facing application but i would probably use it for an internal application. NexJS is react, just a framework on top of react. If you choose react, you'd likely go with nextjs, there are other options but nextjs is one of the hot ones right now. Angular, tinkered with it, haven't used it but its a framework different than react, but often times you see weba api listings paired with angular. In my area, React is the front end framework in demand so i went with that when choosing a new ui framework to learn. If you just want to learn to learn, go with blazor, then react, then angular would be my suggestion.
2 of 5
6
ask 3 people get 5 opinions :) My current go to framework is Blazor Server, just because I don't need to make WebAPIs anymore. Angular - better for "batteries included" kind of deal, and is more forgiving about incorrect state handling. Kind of similar to Blazor in core concepts of how components work. React - I like it more because React as a library is just a UI renderer, and it doesn't force you into any patterns. It's a blessing and a curse. It's easier because it has less components, but it's harder in a sense that you need to be more careful with state management.
🌐
Reddit
reddit.com › r/angular › react vs angular: what are the key differences and how do you choose your project stack?
r/angular on Reddit: React vs Angular: What are the key differences and how do you choose your project stack?
July 24, 2025 -

I'm about to start building a web project and I'm trying to decide between React and Angular for the frontend. I know both are mature and widely used, but I'd love to hear from those who have experience with both in real-world scenarios:

  • What are the most significant differences between the two in terms of actual development experience?

  • What criteria do you usually consider when picking a frontend stack? (e.g., team size, complexity, deadlines, learning curve, architecture, maintainability, etc.)

  • Have you ever regretted choosing one over the other? Why?

A bit of context: The project involves analyzing vulnerabilities in enterprise applications using AI to suggest mitigation actions. There will also be dashboards for users and managers to track and confirm those actions.

🌐
Reddit
reddit.com › r/nextjs › angular 17 with @rx-angular/isr or next.js?
r/nextjs on Reddit: Angular 17 with @rx-angular/isr or Next.js?
November 3, 2023 -

Hi, I am considering to use Next.js for a new start up since the other guy use Next.js.

I am an Angular Developer at my current workplace. I did a React bootcamp back in 2020, but overtime I preferred Angular because of the module feature. So, my knowledge of React and Next.js is outdated.

The current problem with Angular 17 is:

  1. the `@defer` feature offers value that is too good to pass up. However, `@rx-angular/isr` is not compatible with Angular 17, yet. In short, I want to use Angular 17 if we are going to start fresh.

May I know why Next.js is better in terms of SEO, and code maintainability, if compared to Angular 17?