-
Notifications
You must be signed in to change notification settings - Fork 10k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Announcement] Obsoleting Microsoft.AspNetCore.SpaServices and Microsoft.AspNetCore.NodeServices #12890
Comments
Is UseWebpackDevMiddleware going away with this change? Or UseSpaStaticFiles? |
We've been using We'd previously been using the ClearScript library (in an earlier .NET Framework project), but that does not yet support .NET Core/.NET Standard. If Microsoft.AspNetCore.NodeServices goes away, our only alternative would probably be to fork the source code. |
@NotMyself As far as I understand Seriously, I liked this webpack middleware with HMR, because it accelerates the inner loop and is more comfortable instead of having two processes (dev server + ASP.NET Core app). It also reflects more the production running app - that is served by ASP.NET Core using e.g. Kestrel. I would appreciate, when useful libraries aren't become obsolete after years of supporting it. That weaknesses the trust using a library. At least, I expect a comprehensive migration guide for those who using the obsolete libraries. |
We use the Is there a recommended migration path to move to functionality in |
Any reason why there's no official vue project template? |
@bugproof Maintaining templates isn't effortless. This has been discussed in issue: aspnet/JavaScriptServices/issues/412. |
So how would HMR work with Webpack now? Webpack runs its own web server. |
My company also uses the |
I get the main gist of this issue, but losing |
I'm not sure I understand how |
@alexdresko I agree with you. |
@NotMyself The webpack middleware is part of Microsoft.AspNetCore.SpaServices and will be obsoleted as part of this change. The support for SPA static files is part of Microsoft.AspNetCore.SpaServices.Extensions and will continue to be supported. |
@flcdrg @atrauzzi @ericgreenmix Could you please share with us some details on how you are using NodeServices today? Why do you need to execute JavaScript on the server at runtime? If there is significant interest in this functionality it might be interesting to spin NodeServices off as a community driven project. Is that something any of you would be interested in taking on? |
We use We also have a functions-as-a-service platform that we're building for customers to write their own custom logic in our app using Javascript. There are alternatives like Edge.js (which is not .net core compatible) but NodeServices makes this easy. There's a lot of value in it and if it's not going to be maintained then we would definitely like to see it as a separate community project. |
@danroth27 For the same reason that people do interop generally. In our case, we're using a PDF generation library to do reporting, because there is no equivalent available in netcore for linux platforms. As @manigandham points out, that was a general feature of the library. |
@danroth27 As others have said, we use it to leverage various NPM packages that don't have equivalents in .Net. As the repositories readme states:
What led to the decision of deciding to obsolete the |
@ericgreenmix Our primary scenario for building NodeServices was to enable integration between SPA frameworks and ASP.NET Core for things like like server-side prerendering and HMR. Since we now integrate with the CLIs for Angular and React directly this functionality is no longer needed for these specific scenarios. Providing NodeServices as a generic way to into JS from .NET Core is not something we want to maintain long term. |
@manigandham Makes sense. We certainly would encourage folks that are interested in continuing to maintain this functionality as a community based project to do so. If such a community project were to spin up it is more than welcome to use the existing NodeServices code as a starting point with the appropriate changes to the namespaces and package names. We'd be happy to point folks that are interested in this functionality to whatever the community comes up with. |
@NotMyself We'd like to enable the .NET + Vue community to ship a Vue template that integrates with the Vue CLI similar to what we do for Angular and React. I believe we still have some functionality to make public to make that reasonable to do, but I think that's something we'd like to address in the .NET 5 time frame. |
So I see this thread as I am attempting to update to .Net 5 and have a project that uses AspNetCore.NodeServices in order to run some javascript that used to be ran in the browser and need to get identical output and I'm seeing that there is a 5.0 preview released just 4 months ago. Are they looking at releasing it. As others mentioned I'd probably have to fork the code if it is abandoned. |
Hey all (and particularly @johnrom, @CodeTherapist and @danroth27) I've just happened upon this issue. Yay! @johnrom suggested that Like many others, I'm curious as to whether there is an alternative to @CodeTherapist did a great write up on this and a workaround: https://codetherapist.com/blog/aspnetcore-deprecated-spa-services/ However, his solution was Vue specific; I was wondering if there was a more generic approach that is advised? Googling has not resolved this alas! |
So having just taken .NET 5 for a spin, it looks like |
Since .NET 5 is out, how can we migrate out .NET Core 3.1 app to .NET 5 and keep the server side rendering of our React SPA? Does the app has to be split into 2 for front and back-end? |
@alekkowalczyk You can switch to using the Jering.Javascript.NodeJS library to get this functionality for ssr. |
@MorleyDev : Do you have any working samples to share here. that will help the community |
Remove aspnet webpack to make way for .NET 5 upgrade, and hot module reloading of the site, which is much more difficult in .NET 5. See this issue for a discussion of the .NET changes that lead to this dotnet/aspnetcore#12890 Update webpack from verion 4 to 5. This required changing how GOV.UK assets are made accessible, they are now included using the CopyPlugin.
Remove aspnet webpack to make way for .NET 5 upgrade, and hot module reloading of the site, which is much more difficult in .NET 5. See this issue for a discussion of the .NET changes that lead to this dotnet/aspnetcore#12890 Update webpack from verion 4 to 5. This required changing how GOV.UK assets are made accessible, they are now included using the CopyPlugin.
Remove aspnet webpack to make way for .NET 5 upgrade, and hot module reloading of the site, which is much more difficult in .NET 5. See this issue for a discussion of the .NET changes that lead to this dotnet/aspnetcore#12890 Update webpack from verion 4 to 5. This required changing how GOV.UK assets are made accessible, they are now included using the CopyPlugin.
Thank you for contacting us. Due to a lack of activity on this discussion issue we're closing it in an effort to keep our backlog clean. If you believe there is a concern related to the ASP.NET Core framework, which hasn't been addressed yet, please file a new issue. This issue will be locked after 30 more days of inactivity. If you still wish to discuss this subject after then, please create a new issue! |
@msftbot still no "proper" answer for in my opinion a very important question - How to properly do SSR in ASP.NET 5 using an SPA framework? Since it was functionality "out of the box" in ASP.NET Core 3.1 and older - a migration guide is in my opinion more than necessary. |
Might be worth keeping an eye on this issue: #27887 |
If you write F#, you can use https://fable.io/ to create isomorphic applications and share code between server and client. |
All the existing NodeServices does and is, is a thin layer of child process lifetime management and an HTTP loopback to facilitate communication. The messy parts - and the only reason Microsoft could conceivably use as proper arguments to drop support - are in the JavaScript glue-code such as the I wouldn't exactly resort to calling a fairly standard and well-understood practice of inter-process communication over an HTTP loopback a 'hack' when compared to shoe-horning your entire application into an isomorphic rendering model that can fit yet another compiles-down-to-javascript cross-compiler. But maybe that's just me. |
That's not the part that was a hack, its totally valid to use HTTP to do IPC between two different processes, The hack-part was the way it was starting the node server from inside that library. |
For anyone needing mostly the UseWebpackDevMiddleware extension method - I've attempted to port the Microsoft.AspNetCore.SpaServices library into .NET 5 by using the https://github.com/JeringTech/Javascript.NodeJS library. Migration path:
That should do the trick...I've also attempted to port the Prerendering part, however as I've never used it and don't have time to learn just to test something I'll probably never use in production I haven't tested it Source available on https://github.com/brunolau/BrunoLau.SpaServices |
Ah. If that's your beef, then iirc you can reconfigure the services collection with replacement classes that don't create a new node process and interface with it over local loopback, but which connect to an already running node process elsewhere. Those parts should be replaceable as iirc one of the in-the-box replacements was to not use HTTP loopback but use named pipes. |
Hello there, can anyone suggest a proper way to use ssr with recent versions of both asp.net and angular? for development I tried sth but for deployment it's not working at all. My old application was net core 3.1 with angular 11 works wit ssr but now I'm desperate... |
@vslzl if you were using the Microsoft.AspNetCore.SpaServices library, you might try my port which is mentioned 2 comments above |
@vslzl seems that the proper way is to split such app into ASP.NET back-end and node.js front-end for SSR, just wondering if there is an easy way to deploy such bundle into a single Azure AppService? 🤔 |
I'll try, thank you.
Exactly, I don't want to split my application in two parts. Single Pain Application is enough. No need to double them. |
You can create directories within your Azure AppService and make them virtual applications. |
Interesting, how is it set-up in the dev environment? Is it within one |
I don't have access to my development environment right now but I can give more information about my setup next week. |
I have finally had some time to create a repository and set up a little demo consisting of:
You can find my repo here: https://github.com/mopinsk/aspnetcore-angular-ssr |
ASP.NET Core supports integration with various single-page app (SPA) frameworks, including Angular, React, and React + Redux. Initially integration with these frameworks was accomplished with ASP.NET Core specific components that handled scenarios like server-side prerendering and integration with webpack. But as time went on, industry standards changed and the SPA frameworks each released their own standard command-line interfaces (e.g., Angular CLI, create-react-app).
When ASP.NET Core 2.1 was released in May 2018, we responded to the change in standards by providing a newer and simpler way to integrate with the SPA frameworks' own toolchains. This new integration mechanism exists in the package
Microsoft.AspNetCore.SpaServices.Extensions
and remains the basis of our Angular and React project templates since ASP.NET Core 2.1.To clarify that the older ASP.NET Core specific components are not relevant or recommended, we are now officially obsoleting the pre-2.1 integration mechanism and marking the supporting NPM packages as deprecated.
The contents of the following NuGet packages have all been unnecessary since ASP.NET Core 2.1, and so are now being marked as obsolete:
For the same reason, the following NPM modules are being marked as deprecated:
These packages will later be removed in .NET 5. If you are using these packages, please update your apps to use the functionality in Microsoft.AspNetCore.SpaServices.Extensions instead along with the functionality provided by the SPA frameworks you are using. To enable features like server-side prerendering and hot module reload please refer to the documentation for the corresponding SPA frameworks. The functionality in Microsoft.AspNetCore.SpaServices.Extensions is not obsolete and will continue to be supported.
The text was updated successfully, but these errors were encountered: