• Node/22.8.0/Node Script Start Watch Upgrade

    Starts Node.js in watch mode. When in watch mode, changes in the watched files cause the Node.js process to restart. By default, watch mode will watch the entry point and any required or imported module. Use --watch-path to specify what paths to watch

  • Node/22.8.0/Dotenv To Env File Migration

    Loads environment variables from a file relative to the current directory, making them available to applications on process.env. The environment variables which configure Node.js, such as NODE_OPTIONS, are parsed and applied. If the same variable is defined in the environment and in the file, the value from the environment takes precedence.

  • Remix Js/V2/Nodejs Module Exports Server Build Directory To Path

    In your remix.config.js, rename serverBuildDirectory to serverBuildPath and specify a module path, not a directory.

  • Node/Globmatch Native

    This codemod automates the migration of glob-matching functions like minimatch, micromatch, and picomatch to Node.js's native matchesGlob support in LTS version 20.17.0.

  • Elasticsearch/8/Unify Return Value

    This codemod updates the API response structure for search calls, replacing the previous body-only return with an object containing additional fields like statusCode, headers, and warnings

  • Elasticsearch/8/Rename Query String

    This codemod renames the query key to querystring and changes the body key to bulkBody in client.transport.request.

  • Elasticsearch/8/Move Client Configurations

    This codemod moves the client-related configuration parameters (ignore, headers, requestTimeout, and maxRetries) from the API object to the second options object.

  • Npm Esm First In Exports

    Sort package.json export order to prefer ESM over CJS

  • @E18e/Split Lines

    Introduction

  • @E18e/Index Of

    Introduction

  • Sql/Add Index Before Select

    Example of using codemod that changes SQL. It detects all SELECT statements and adds an index creation statement before them. Inside SELECT statement for any fields that ends with _id it creates an index on that field.

  • Python/Orjson/Recipe

    This recipe is a set of codemods that will upgrade json to orjson in your python projects.

  • React Router/4/Index Route

    Replace IndexRoute with Route having exact prop set to true.