• Node/22.8.0/Node Script Update To Experimental Test Coverage

    Node.js now supports requiring code coverage to meet a specific threshold before the process exits successfully. To use this feature, you need to enable the --experimental-test-coverage flag.

  • Node/22.8.0/Enable Compile Cache In Start Server

    This release adds a new API module.enableCompileCache() that can be used to enable on-disk code caching of all modules loaded after this API is called. Previously this could only be enabled by the NODE_COMPILE_CACHE environment variable, so it could only set by end-users. This API allows tooling and library authors to enable caching of their own code. This is a built-in alternative to the v8-compile-cache/v8-compile-cache-lib packages, but have better performance and supports ESM.

  • Meteor/V3/Add Await To Async Webapp Methods

    Below are some webapp methods which are now async, thats why added await

  • Next/15/Update Route Handlers

    Update Route Handlers to Handle Caching

  • TanStackRouter CodeSplitting

    This codemod automates the process of splitting your TanStack Router route files into two separate files to enable code splitting. By utilizing this codemod, you can easily move non-critical route configuration, such as the component, into a separate .lazy.tsx file, which allows for better performance and reduced initial load time in your React application.

  • Remix/Single Fetch/Recipe

    This codemod runs all of the Single Fetch codemods in order

  • Remix/Single Fetch/Enable Install Globals Native Fetch

    Enables the nativeFetch flag in all instances of installGlobals

  • Remix/Single Fetch/Enable Flag

    Enables the single fetch flag in the Remix Vite config.

  • Netlify/0.8.1/EnableBuildEventHandlers

    This codemod renames enableBuildhook to enableBuildEventHandlers as required in Netlify SDK v0.8.1.

  • Remove Unused Feature Flags

    This experimental codemod replaces function calls in a for of await functionName(featureFlagName), where: