Matthias
Matthias

Reputation: 29

Integration of an Angular based application in SharePoint Online Framework?

I have an Angular JS Application from a Notes Migration Project in this form:

FileStructure

There is a lot of content. In general PDF Files and JS files.

Files

Now I need to know how can I insert this application into a SharePoint Online Modern site. Do I need to write the entire application new e.g. in React or still use AngularJS in an SPFx file? Would it be possible to just move the files to a document library and then move it html structure to a modern site editor?

I would very glad if someone could give some hints.

Best regards

Matthias

Upvotes: 0

Views: 394

Answers (1)

Murtuza Husain
Murtuza Husain

Reputation: 189

No you dont have to write your entire application again. But you may have to still create a webpart that can use angularjs as a backbone.

https://learn.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/guidance/migrate-angular-1-x-applications-to-sharepoint-framework

If you have lot of business logic, then it makes sense to re-write your logic.

If you have mostly static HTML, still you have to create an SPFx webpart but you can copy paste your html in a no JS framework webpart and get going.

PDFs will anyhow go into the Document libraries.

Upvotes: 0

Related Questions