Angular's new roadmap π
AI
AI
AI
Compilers
Signals
Goodbye selectorless, Nitro, streaming SSR, authoring format improvements π₯²
github.com/angular/angu...
Angular's new roadmap π
AI
AI
AI
Compilers
Signals
Goodbye selectorless, Nitro, streaming SSR, authoring format improvements π₯²
github.com/angular/angu...
Polygraph takes Nx Cloud to the next level, it's not only about fast, resilient CI anymore. And we've got lots more coming. Super proud of the team for their work on this one π π₯³ Congrats @nartc.bsky.social @jameshenry.bsky.social @victorsavkin.bsky.social
We've just leveled up, introducing: Self-Healing CI for Nx Cloud
π©βπ» push a PR
β CI fails
π€ Nx Cloud picks it up, creates & validates a fix for it
π You get a notification, review the fix
β
Fix gets pushed to your PR
Sounds great? Then read on π
ποΈ Iβve got 3 free tickets to @cityjsconf.bsky.social Athens! Iβm speaking about @nx.dev + React!
Want a ticket?
Just reply with your biggest pain point working in React projects β Iβll show how Nx can help in my talk!
Iβll raffle 3 replies, I'll announce winners Fri 23 May π₯
We just shipped an MCP that fixes your CI, automatically!
β
Get notified instantly if your PR CI fails
β
Click a button and let an LLM auto-fix the issue
β
Stay in your editor, stay in flow
youtu.be/fPqPh4h8RJg
Nx and AI - Why They Work so Well Together
nx.dev/blog/nx-and-...
@nx.dev
Vibe exploring a codebase.
(Hint: helps with outdated/non-existent READMEs or CONTRIBUTING.md π)
youtu.be/WUm61cDH8C8
π I've been working on something _very_ cool for the last few months at @nx.dev and I'm too excited to wait for an official announcement later this month!
Here's a sneak preview of the new Nx Terminal UI (TUI) coming in Nx v21 (Not April Fools!):
[Nx Terminal UI] www.loom.com/share/8fc924...
@angular.dev adapter (for tanstack router) is getting real closed!
cc @brandonroberts.dev
PS: 10PM and 6AM are the only time I can ship this past week π₯Ή
Me: writes some @angular.dev code to get a prototype going
@nartc.bsky.social: Let me tweak a few things ... refactors all my code
Me: much better π
Tanstack Angular Router with lazy routes and preload working together.
@brandonroberts.dev
#angular #tanstack #router
More @angular.dev goodness this week!
We have an update release of our Enterprise Angular Patterns book from 2018. This new edition updates a lot of the book's content to match the latest features in Angular as well as Nx and the Nx Console
Get your copy today for free π
nx.dev/blog/enterp...
Folks who excel in both design and engineering are rare, and on the right team, their impact can be massive πͺ At @nx.dev, critical thinking and ownership are central to our culture and engineers can get that deep satisfaction of doing work that aligns with their skills.
1/4 Streamers and enterprise developers see coding assistants differently. The former see massive productivity gains. The latter don't.
We're kicking off our Week of @angular.dev over here at Nx!
Starting off, let's look at one of the most important aspects of development...testing π§ͺ
With Nx, you can adopt the latest testing frameworks and speed up your CI with task distribution! To see how, check our latest blog π
bit.ly/4izQ0tk
Thanks!
New week, new @AngularChalleng !
The shared component isnβt rendering when small = false β but why? π€―
Your mission:
β
Debug content projection with <ng-content>
β
Fix the issue without adding inputs
β
Keep the UI & behavior intact
Can you solve it? π
Looking for internship opportunities around May-September! I'm interested in work related to security, auth, and networks. Remote would be nice but I'm willing to travel if that's preferred
(I'm a Japanese university student in Tokyo unfortunately)
π¨ Job alert! π¨ We're looking for an EU or UK-based Infrastructure Engineer to join our team and help build, maintain, and optimize our cloud infrastructure.
Check out the full job posting here: jobs.lever.co/nrwl/d7b381...
π«‘
The only indepth guide about angular content protection you'll ever need (by @nartc.bsky.social )
nartc.me/blog/angular...
Thanks Ankita!
π¬ The Angular team has dropped *two* new RFCs today:
`resource` as an architectural pattern:
github.com/angular/angu...
the specifics of the `resource` API design:
github.com/angular/angu...
I won't be :( Enjoy!
π The latest @analogjs.org for @angular.dev release is out!
β‘οΈ Support for @vite.dev Environment API with @nitro.build
π₯ Support for hybrid SSR with client-only routes
π€ Snapshot update support with @vitest.dev
π€ Revamped API routes
And more!
github.com/analogjs/ana...
use contentChild to grab that component instance: contentChild(Foo). So for my card's example, it'd be:
titleContent = contentChild(CardTitle)
bodyContent = contentChild(CardBody)
footerContent = contentChild(CardFooter)
unfortunately no, contentChild works with "locator", not "selector" so you can't reference the content nodes via the same selector as "select". However, if you use tag name as selectors for the named slots `<ng-content select="app-foo" />` then `<app-foo />` must be a component, then you can
haha sorry i wrote this in like 3 hours so didnβt really articulate it very well. Happy to clarify on anything.