Using the `upgrade` module in Angular to incrementally upgrade an AngularJS application to Angular.
Questions tagged [ng-upgrade]
157 questions
0
votes
1 answer
Angular hybrid app doesn't appear to be using the same session as angularjs
I have a hybrid angular/angularJS app that seems to work well as basically just a wrapper for angularjs. We're not currently using any angular components or services, all logic still exists in angularjs.
As a step forward to migrating into angular,…

Jer_TX
- 465
- 4
- 20
0
votes
0 answers
NgDowngrade: two-way binding works only one way
I'm working with a hybrid Angular application consisting of AngularJS and Angular 7.
I'm trying to set 2-way binding between an AngularJS component to an Angular downgraded component.
When I change the bound property in AngularJS, the change…

Tomer W
- 35
- 5
0
votes
0 answers
AngularJS & Angular to co-exists without upgrading angularjs code
I've a single AngularJS application with various controllers/views/services and directives. I wish to move to angular and typescript without modifying the existing code. Is it possible to do this? I've seen various samples and forums where they…

Sagar Agrawal
- 639
- 1
- 7
- 17
0
votes
1 answer
Upgrade AngularJS bindings to Angular 2
Upgrade AngularJS controller to Angular 2.
export default {
template: html,
bindings: {
binding1: '<',
binding2: '<',
binding3: '<'
},
controller: [SomeService, controller]
}
function controller(SomeService)…

Prog_CS
- 33
- 1
- 6
0
votes
1 answer
Angularjs digest in progress error while using with hybrid app
So, I have a pretty bulky hybrid app using angularjs 1.7 and angular 5.x.
I am using ngUpgrade module to run both the apps, however I have run into a problem where if I use href to navigate to a different route (defined in angularjs router), I get…

arbghl
- 358
- 2
- 14
0
votes
1 answer
Include AngularJs javascript files into Angular cli
I have a legacy Angular JS application and now working in tandem with few new Angular 5 components using upgrade module. Following this post here
Currently, I need to include all my AngularJs code into my index.html.
But, I want to include all JS…

User3250
- 2,961
- 5
- 29
- 61
0
votes
0 answers
Migrate Vue.js to Angular 6. Tips are welcome?
Need to migrate from vue.js to Angular 6. Is there a better approach to start with and need best practices too as new to both the frameworks.

Yuva Raj
- 11
0
votes
3 answers
How to upgrade from angular 1.4 to angular 5?
To upgrade from angular 1.4 to Angular 5 is it possible to use ngupgrade and follow incremental approach or it is strictly applicable to use ngupgrade from version 1.5. According to the image the prerequisites mentioned 1.5 is used for ngUpgrade.

user10003750
- 51
- 7
0
votes
0 answers
Can I run an AngularJS component and an Angular component next to eachother?
We have an AngularJS application. The "main" template is out of it's reach: it's generated by a CMS. We have no idea how the page is going to look like. The AngularJS application starts wherever there's an AngularJS component.
It's not a SPA, we…

Thomas Rijsewijk
- 31
- 4
0
votes
1 answer
ngUpgrade with Angular-cli
I have a hybrid AngularJS (1.7.0) and Angular 6 app. I am also using @angular/upgrade module to upgrade/downgrade components and services. I have got it working using custom webpack but now I want move towards angular-cli.
Can anyone suggest the…

tangokhi
- 945
- 2
- 8
- 20
0
votes
1 answer
Hybrid AngularJS/Angular 6 app module dependency issues
I'm currently exploring an upgrade path for a pretty large AngularJS 1.6 app to Angular 6. I have my app bootstrapping as a hybrid app, and I've begun converting individual modules and components. I need to be able to do the migration in chunks,…

Jacob
- 29
- 5
0
votes
1 answer
ngUpgrade two versions of Highcharts, error 16
I have an upgraded app to use ngUpgrade which is working well so far, but I've run into a problem trying to incorporate Highcharts.
The original app has a different version of highcharts included (an older one for AngularJS).
The new (hybrid…

Organiccat
- 5,633
- 17
- 57
- 104
0
votes
1 answer
Where to put ng1 templates in an angular hybrid application built by angular-cli?
I'm trying to build an angular hybrid application out of a angular.js application. I'm following the official documentation (https://angular.io/guide/upgrade). I reached and completed this step:…

PoC
- 140
- 2
- 10
0
votes
0 answers
translate directive not work in angular
I'm currently working on an angular hybrib app (angular + angularJs).
The app use angular-gettext and ngx-translate for translation.
Both work in their own runtime but I can't make it work when I downgrade an Angular component into an angularJs…

lionelB
- 209
- 3
- 14
0
votes
1 answer
AngularJS upgrade to Angular
Currently, we have an app build using Angular JS 1.4 version. We wanted to upgrade it to Angular 4 in phases. To start with we wanted to upgrade it to Angular JS 1.5 version to have component api enabled. Next, we wanted to implement new…

SF Arj
- 1