angular-cli
angular-cli copied to clipboard
[Feature] Reduce dependencies on nodejs for the CommonEngine
🚀 Feature request
What modules are relevant for this feature request?
- [ ] builders
- [x] common
- [ ] express-engine
Description
I'd like to use Angular server side outside of nodejs, because it's intended to be delivered via web frameworks or gateways (like Spring or ASP.NET Core), but those are often not in nodejs.
In my case I'd like to be able run Angular on something like GraalJS (GraalVM can run both JVM and JS) or maybe with some WASM-based JS engine to directly integrate with the backend applications.
The current state with something like GraalJS actually doesn't look too bad, but it's pretty hard to build drop-in replacements for all the things and debug all of that.
Describe the solution you'd like
I don't have the overview, whether this is even possible, but what I'd imagine ideally would be some sort of RuntimeAdapter
interface that specifies all the host features required by the CommonEngine
and then a NodeJsAdapter
that is passed by default and implements everything using all the functions currently implemented using nodejs built-in modules and then one can optionally specify a custom adapter that works for their environment, whatever that may be.
Describe alternatives you've considered
Patching all the nodejs built-in modules with custom implementations is kinda maybe possible, but it's quite the project and kinda fragile and messy and definitely not safe from breaking changes.
Scope
This issue is about the core engine not depending on node.js. It is not about alternative platforms this engine could be used in nor is the goal for Angular to provide any Integrations with specific platforms. It is merely the option to have the APIs so that either all developers or the Angular team itself can even entertain to build those kinds of platform support.
So after some more work I actually got it running (and it's actually running surprisingly fast, only CSS inlining is WIP) and the following is what I needed to patch:
-
url
(only seems to be using the whatwg URL, which can be loaded from node'surl
, is just available in a Browser or is available as standalone npm packagewhatwg-url
) -
path
(can be substituted withpathe
) -
fs
(doesn't actually seem to be used or required at least when you pass in theindex.html
as string, but you need to patch it for require to not fail) -
os
(unused but needs to be patched) -
tty
(isatty
is used, can be safely patched to just always returnfalse
) - the global
process
(env
andargv
are used but can just be empty,hrtime.bigint
andcwd
need to be patched) - the global
global
(used somewhere instead ofglobalThis
)
And probably more issues I haven't found yet.
Also queueMicrotask
, setTimeout
, clearTimeout
, setInterval
and clearInterval
need to be patched, but as they are so universal, I think it's fair to make the Engine responsible for bringing those.
To be clear I'm not advocating for everyone enduser needing to bring this on their own or bloating the package for everyone with huge replacements, but what might make sense is to take those dependencies out of the CommonEngine
and change it's signature to something like:
export interface EngineAdapter {
readPublicFile(relativePath: string): Promise<string>;
// ...
export declare class CommonEngine {
constructor(bootstrap?: Type<{}> | (() => Promise<ApplicationRef>) | undefined, adapter: EngineAdapter, providers?: StaticProvider[]);
}
and then having some package like @angularuniversal/nodejs-adapter
that provides @angularuniversal/express-engine
with an easy to use implementation of that Adapter so there are no breaking changes for the normal user. For a bit less modularity, without breaking the CommonEngine
API one could also maybe include that NodeJsEngine
in the common package, but that makes it harder probably. The biggest problems are going to be the dependencies on node for dependencies though, so the feasibility should probably be checked before trying.
I'll try and get my adapter into a not-that-messy state in the coming days and get it open source, that it might be more obvious where the problems and risks lie, with the current non-decoupled approach.
This feature request is now candidate for our backlog! In the next phase, the community has 60 days to upvote. If the request receives more than 20 upvotes, we'll move it to our consideration list.
You can find more details about the feature request process in our documentation.
Just a heads up that we kicked off a community voting process for your feature request. There are 20 days until the voting process ends.
Find more details about Angular's feature request process in our documentation.
This feature request is CRUCIAL to keep Angular alive, I dont think it needs a community voting. Frameworks like Next or Nuxt are overtaking React and Vue and that is also because more hosters (e.g. Vercel, Cloudflare Pages, Netlify) easily allow SSR on their serverless functions. Angular Universal however still cant be used on serverless functions like Cloudflare Workers.
From my personal perspective this missing feature is the death of Angular, interesting article about this: https://dev.to/jdgamble555/angular-universal-is-the-problem-not-angular-5801
I do agree that we need to reduce dependencies on Node.js APIs, although most of these come from critters.
That being said, you can do server side rendering with cloudflare workers https://developers.cloudflare.com/pages/framework-guides/deploy-an-angular-site/
That doc is for a normal Angular site, not a Angular Universal SSR app
npm create cloudflare@latest my-angular-app -- --framework=angular
will create and configure an Angular SSR application with all the necessary things to be deployed on a cloudflare worker.
They seem to shim the NodeJS API, maybe a good workaround for now: https://github.com/cloudflare/workers-sdk/blob/36d497829972667852bbcaacebcb22124d73d765/packages/create-cloudflare/src/frameworks/angular/templates/tools/bundle.mjs#L19
The code looks too complicated though to burden the average developer with all of that. Seems like if the CommonEngine
had no NodeJS dependencies, their code could be far more resilient and simpler.
npm create cloudflare@latest my-angular-app -- --framework=angular
will create and configure an Angular SSR application
Sorry but where do you see SSR and / or Angular Universal?
Angular Universal is using @nguniversal/express-engine
and Express alone is not possible on Cloudflare Workers.
Btw the initial issue is from 2020: https://github.com/angular/universal/issues/1740
I think you might have to add SSR yourself, because I see references to it in the source code of the CLI, but the documentation is really confusing... Would be much better if it was as easy as just adding a cloudflare engine or so, but because of the dependencies they probably would need some elaborate schematics for that.
Maybe they tried to make it work without success but in the docs there is no word to Angular Universal or SSR and the command that @alan-agius4 stated creates just a regular Angular app like @angular/cli new
does.
@MickL, in the above screenshot, I am not even seeing any chances done by CloudFlare such as the creation of the tools
directory.
Here's what I am seeing, after running the above mentioned command.
tree -L 2
.
`-- my-angular-app
|-- angular.json
|-- node_modules
|-- package.json
|-- package-lock.json
|-- README.md
|-- src
|-- tools
|-- tsconfig.app.json
|-- tsconfig.json
|-- tsconfig.server.json
|-- tsconfig.spec.json
`-- yarn.lock
Another thing that is not working is Vercel Edge Functions:
Error: The Edge Function "api/index" is referencing unsupported modules: - dist/server/main.js: crypto, fs, http, https, net, os, path, querystring, stream, string_decoder, timers, tty, url, zlib, node:fs, node:path
This is definitely a huge problem. If Angular Universal (not Angular) does not support Edge Function deployment, which is a Deno deployment, it will never truly be able to compete and adopted by people coming from other frameworks.
J
Any news on how to deploy an Angular +16 SSR app into Vercel/Denodeploy/Cloudfare?
I recently deployed angular ssr 16 on EC2 with Github Actions and previously deployed on vercel using this guide. It was working fine on vercel but the Initial sever response time was around 2 -3 second. So I migrated from there after 1 day
Angular Universal runs on Vercel but not on Serverless Edge Workers like Vercel Edge Functions, Deno Deploy or Cloudflare Workers.
@piyushpranjal03 - Hi Pi, I wrote that guide :)
The reason it takes 2-3 seconds, is because Vercel itself is Serverless using AWS Lambdas under the hood. It only takes 2-3 second on the first load of the bucket, which is the cold start time. AWS Lambdas are way faster than Cloud Functions (although paying more for faster servers could change that).
Vercel Edge, on the other hand, does not use serverless functions, but the Edge Network, which would load extremely fast. However, Angular Universal will not load on the edge due to the Express dependencies (the point of this post).
Fix this problem, and Angular Universal can run on the Edge (no cold starts or serverless), and it would be extremely fast on a CDN... just like you can do with literally every other SSR framework. (technically the edge is considered serverless without cold starts, but completely different infrastructure)
J
Thanks for the guide @jdgamble555 . Yeah now I'll move my app to cloudflare directly will wait until the proper SSR deployment is not available there.
npm create cloudflare@latest my-angular-app does work now (it didn't work for me the last time I tried some weeks ago).
main.server.ts looks like this:
import "zone.js/dist/zone-node";
import "@angular/platform-server/init";
import { bootstrapApplication } from "@angular/platform-browser";
import { renderApplication } from "@angular/platform-server";
import { AppComponent } from "./app/app.component";
import { config } from "./app/app.config.server";
interface Env {
ASSETS: { fetch: typeof fetch };
}
// We attach the Cloudflare `fetch()` handler to the global scope
// so that we can export it when we process the Angular output.
// See tools/bundle.mjs
(globalThis as any).__workerFetchHandler = async function fetch(
request: Request,
env: Env
) {
const url = new URL(request.url);
console.log("render SSR", url.href);
// Get the root `index.html` content.
const indexUrl = new URL("/", url);
const indexResponse = await env.ASSETS.fetch(new Request(indexUrl));
const document = await indexResponse.text();
const content = await renderApplication(
() => bootstrapApplication(AppComponent, config),
{ document, url: url.pathname }
);
// console.log("rendered SSR", content);
return new Response(content, indexResponse);
};
and the tools folder contains the Cloudflare shims/magic to make it work.
Watching the Angular 17 announcement video I was excited to see just how committed the Angular team are to SSR (and SSG), including non-node environments on the edge. Especially with Angular Universal being rolled into core and a better DX.
the tools folder contains the Cloudflare shims/magic to make it work
Yeah well, that's the big honey, that that isn't needed anymore, as it doesn't sound too stable of a foundation...
I was excited to see just how committed the Angular team are to SSR (and SSG)
They NEED to be. Angular is already left behind and I dont see them catching up to Next and Nuxt anymore. After 7 years of being an Angular developer I just tried out Vue and Nuxt for the first time and I am simply amazed by how easy it is (no classes, no DI, auto imports, runs everywhere, file based routing, build a server rest API directly in Nuxt, etc. etc.) and also by the eco system around it. Nuxt built their own server h5 to reduce serverless cold start time and a server engine Nitro to be able to deploy it everywhere (article here) while Angular is still using Express that doesnt even work on edge workers.
no classes, no DI
Well but that's why there are different frameworks to choose from. I find both of them to be very important to me for big enterprise applications we develop. But yes SSR on the edge is a must.
Hi @alan-agius4 any updates on this? ETA or anything?
The @angular/ssr
at the moment common engine indeed has a strict requirement for Node.js due to Critical CSS inlining. However, this does not mean that Angular SSR does not work on Edge workers. Edge workers are supported and in fact we did recently work with both Netlify and CloudFlare to support Angular version 17.
We will continue to improve Edge worker compatibility and integrations with providers in the coming versions.
@alan-agius4 - I think a lot of people use Vercel for their projects, which is why this is a problem for me specifically. Perhaps there could be a deno
, bun
, and node
build version respectively. I think vite handles this automatically, so this is really a esbuild
problem and should be fixed there I believe. That way it could be removed all together in angular/ssr, and just added to the build process.
J
@jdgamble555, we actually did reach out to Vercel, to work with them to support SSR. Unfortunately in the near term they do not have a priority to add support for Angular SSR/SSG.
I think you might have sent an incorrect vite link above, as it links to CSS processing.
Perhaps there could be a deno, bun, and node build version respectively.
Would be good if it's modular enough though to support other stuff as well. I'd want to use it from GraalVM, which works differently again. Or maybe you'd want to use it as a portable WASM/WASI module or something like that. It needs to be flexible.
Not saying that support for those targets needs to be in this repo, but it should be flexible enough that you can add support for those targets on your own with a few lines of code+implementations for FS access and HTTP(S).
@alan-agius4 - The CSS preprocessing will inline the CSS in the page. It is actually automatic, but yes uses postcss
.
Vite is pre-configured to support CSS @import inlining via postcss-import.
Yeah, I think esbuild
somehow should be more versatile and support any build environment, but I think ssr
should be separate from the build process like vite... probably (definitely not my specialty). As long as the environment problem gets solved, how it is solved is irrelevant to me.
As far as Vercel:
When writing my article on deploying to Vercel, and actually wanting to deploy to Vercel for my blog back then, I actually reached out to them.
They told me they don't support any 3rd party integrations, as it is up to the Framework creator and the community to create adapters that work with Vercel deployments. However, they had a specific problem with Node.js server, quoting them from December 28, 2021:
Unfortunately, there are no plans to add this since this is using a Serverless Function to start your server on Vercel, instead of a Node.js server, making this not ideal.
I proved them wrong by making it work, as I honestly think there was an ignorance on Vercel's behalf. They literally told me that since I did not have an adapter like nuxt vercel-build, they would not add it to the list. I did not want to take the time to build one, and frankly just switched away from Angular at that time due to the long build times for Angular Universal.
I think you guys could build one now easily, but it would not work for Edge functions until the Node.js dependencies are removed, which would solve all problems at hand.
J
I am receiving below error when trying my app on cloudflare:
http
X [ERROR] ERROR Error: Dynamic require of "http" is not supported