Public Sector

We've had the pleasure of working with UK and overseas central and local government departments, including Healthcare (NHS and Foundation Trusts), Defence, Education (Universities and colleges), many of the main Civil Service departments, Emergency Services; also public-owned corporations including the BBC, Bank of England, Ordnance Survey, and regulatory bodies such as Ofgem.

We are registered on Crown Commercial Service’s (CCS) Dynamic Purchasing System (RM6219 Training and Learning) and also with numerous tender portals such as Ariba, Coupa and Delta E-Sourcing.

Read more...

Graduate Training Schemes

Framework Training has a strong track record of providing a solid introduction into the working world for technical graduates across myriad industries. We provide the opportunity to learn and gain valuable hands-on experience in a supportive, friendly and sociable training environment.

Attract & retain the brightest new starters

We know it is vital for our clients to invest in the future of their talented grads; not only to provide them with high-quality, professional training essential for their roles, but to embed them within the organisation’s culture and guide them on the right path to a successful career.

After all, your new hires could well be the next leaders and their creative ideas and unique insights are invaluable to your business.

Read more ...

Learning & Development

Our unique portfolio of high-quality technical courses and training programmes are industry-respected. They’re carefully designed so that delegates can seamlessly apply what they’ve learnt back in the workplace. Our team of domain experts, trainers, and support teams know our field — and all things tech — inside out, and we work hard to keep ourselves up to speed with the latest innovations. 

We’re proud to develop and deliver innovative learning solutions that actually work and make a tangible difference to your people and your business, driving through positive lasting change. Our training courses and programmes are human-centred. Everything we do is underpinned by our commitment to continuous improvement and learning and generally making things much better.

Read more...

Corporate & Volume Pricing

Whether you are looking to book multiple places on public scheduled courses (attended remotely or in our training centres in London) or planning private courses for a team within your organisation, we will be happy to discuss preferential pricing which maximise your staff education budget.

Enquire today about:

  • Training programme pricing models  

  • Multi-course voucher schemes

Read more...

Custom Learning Paths

We understand that your team training needs don't always fit into a "one size fits all" mould, and we're very happy to explore ways in which we can tailor a bespoke learning path to fit your learning needs.

Find out about how we can customise everything from short overviews, intensive workshops, and wider training programmes that give you coverage of the most relevant topics based on what your staff need to excel in their roles.

Read more...

The JavaScript ecosystem is rewriting itself

From Rust-powered build tools to AI in the dev loop, the JS ecosystem is shifting fast. Here's what's changing, why it matters, and what to do about it.

March 18th, 2026

For over a decade JavaScript has dominated web development. The language itself hasn't changed dramatically. But everything around it has. 

The ecosystem is undergoing a quiet but fundamental shift: frameworks are moving work from runtime to compile time, infrastructure is being rewritten in Rust, runtimes are competing on performance and security, and AI is becoming part of the development lifecycle. This isn't just evolution. It's a re-architecture of how JavaScript applications are built. 

The Frontend is now a compiler problem

Historically, frontend frameworks solved performance at runtime. React's Virtual DOM was the classic example: the browser constantly compared component trees to decide what needed updating. It worked, but it came with overhead. 

In 2026, frameworks have largely converged on the same conclusion: runtime work is expensive, so do it at build time instead. 

React 19 largely eliminates the need for manual optimisation (useMemo, useCallback, React.memo) by having the React Compiler insert memoisation automatically. Production apps are seeing 25 to 40% fewer unnecessary re-renders. Server Components mean heavy logic never ships to the browser, and client bundles can shrink 40 to 60% as a result. React isn't just a UI library anymore. It's becoming a full-stack platform, and that shift changes how teams need to think about architecture, not just syntax. 
Banner image - click to view our React training courseSvelte 5 takes this further. It has always compiled components into efficient JavaScript rather than managing updates in the browser. The new Runes system ($state, $derived, $effect) gives developers explicit control over data flow while keeping bundles tiny, typically 20 to 30KB. If React is a traffic cop constantly checking intersections, Svelte is a city planner who designs the road system upfront. 
A photo of a traffic officer directing trafficVue 3.6 introduces experimental Vapor Mode, which bypasses the Virtual DOM entirely. Combined with a redesigned reactivity system, it achieves 56% lower memory usage and performance approaching SolidJS. 

Angular 21 has dropped zone.js entirely in favour of Signals-based fine-grained reactivity. Updates target exactly the components that depend on a change, not the entire application. For teams with existing Angular codebases, this is a meaningful architectural shift worth getting ahead of. 
Banner image - click to view our Angular training course

Tooling is being rewritten in Rust 

The second shift isn't in frameworks. It's in build infrastructure. 

JavaScript build pipelines for large applications used to take minutes, partly because those pipelines were themselves written in JavaScript. They're now being replaced by native Rust tooling, and the speed difference is significant enough to change how teams structure their CI workflows. 

The most significant initiative is VoidZero, led by the creators of Vite. The goal is to replace the fragmented JS toolchain with a unified, high-performance stack. 

Vite 8 replaces its bundling pipeline with Rolldown, a Rust-based bundler. Some teams report build times dropping from 46 seconds to 6 seconds. Crucially, using the same bundler for development and production also eliminates an entire category of bugs where dev and prod builds behaved differently. 

The Oxc toolchain rounds this out. Oxlint is up to 100 times faster than ESLint, and Oxfmt is Prettier-compatible but dramatically quicker. Both share the same parser, so editors, CI, and build tools can rely on the same underlying infrastructure. 

For most teams, this tooling transition will happen gradually, often invisibly when frameworks adopt it under the hood. But understanding what's changed helps when something breaks or when you're evaluating a new stack. 
Banner image - click to view our Rust training course

Runtimes are now competing 

A photo of the silhouette of a cross-country runnerNode.js used to be the only serious option. Now there are three. 

Node.js remains the backbone of the internet. Its advantages are still ecosystem breadth and stability. Recent versions have added a permissions model for filesystem and network access. 

Bun is written in Zig and uses JavaScriptCore. It handles 3 to 4 times more HTTP requests than Node in benchmarks and bundles database access, S3, bundling, and testing into a single runtime. It's positioning itself as an entire backend platform, not just a runtime. 

Deno focuses on security. Programs run in a sandbox and must explicitly request access to files, networks, and environment variables. Built-in formatter, linter, and test runner are included. For teams concerned about supply chain security, this model is genuinely appealing. 

Choosing between them is no longer a trivial decision. Each makes different tradeoffs around performance, security, and ecosystem compatibility, and the right answer depends on what you're building and who's maintaining it. 

AI is becoming part of the development loop 

More than 80% of developers now use AI tools regularly, but the more interesting shift is what's happening beyond autocomplete.

Frameworks like the Vercel AI SDK support multi-step agentic workflows. These are agents that observe an environment, call tools, evaluate results, and continue reasoning. Newer features let these workflows pause and resume across server restarts, enabling long-running processes that involve human approval steps. 

Meanwhile, WebGPU now allows ML models to run directly on the client. Libraries like Transformers.js can run Hugging Face models entirely in the browser, with private inference, offline capability, and no API cost. For certain workloads, the browser is becoming a viable AI runtime. 

This is genuinely new territory. Most developers didn't train as AI engineers, and the patterns for building reliable agentic systems are still emerging. Teams that invest time in understanding these primitives now will be well placed as they become standard. 
An AI-generated picture of grass which looks like it's been grown in the shape of the letters A I
Banner image - click to view our Gen AI and LLM training courses

The Web Platform is catching up 

While frameworks dominate the conversation, the underlying platform has quietly improved. Many things developers used to implement in JavaScript now exist natively: the Popover API, the dialog element, and the :has() CSS selector, which alone removes the need for entire classes of JavaScript layout hacks. 

CSS is becoming a real programming tool rather than an afterthought, and there's a reasonable argument that leaning into native platform features leads to more maintainable code than reaching for a library by default. 

The Pattern 

Zoom out and three ideas are driving everything:

·       Move work earlier. Compilers and build tools handle more so the browser handles less.

·       Move work closer to the user. Server components, edge rendering, and local AI reduce what needs to ship to the client.

·       Move tooling out of JavaScript. Rust-based infrastructure is replacing slow JS-based pipelines. 

The ecosystem is stabilising. The years of framework churn are giving way to something more settled; a smaller set of durable ideas being executed very well. The modern JavaScript developer isn't just writing code. They're orchestrating compilers, runtimes, infrastructure, and AI tooling. 

The surface area of what it means to work in JavaScript has expanded considerably. That's an exciting place to be, but it also means there's more to learn than ever.

Banner image - click to view our JavaScript and JS Framework training courses

 

Share this post on:

We would love to hear from you

Get in touch

or call us on +44 (0) 20 3137 3920