Datadog instrumentation addon for Node.js
Rewriter system for transforming HTML+ERB AST nodes and formatted strings
WebAssembly version of HTMLRewriter
Streaming HTML rewriter.
Utilities for SQL instrumentations
Format whitespace in a SQL query to make it more readable
🛡️ Faster SQL escape and format for JavaScript (Node.js, Bun, and Deno).
A simple and lightweight library for highlighting SQL queries written in pure JavaScript
PGlite is a WASM Postgres build packaged into a TypeScript client library that enables you to run Postgres in the browser, Node.js and Bun, with no need to install any other dependencies. It is only 3.7mb gzipped.
A JavaScript library for connecting securely to your Cloud SQL instances
A transpilation tool mainly used for instrumentation
SQL language support for the CodeMirror code editor
WASM-based implementation of Cloudflare's HTML Rewriter for use in Deno, browsers, etc.
simple node sql parser
MongoDB Shell Async Rewriter Package
A TDS driver, for connecting to MS SQLServer databases.
Simple SQL escape and format for MySQL
Use Cloudflare HTMLRewriter in Node.js, Browser, Next.js and more
Microsoft SQL Server client for Node.js.
Dynamic imports transformer and CSS path rewriter for Vite when using Adobe Experience Manager
An opinionated sql formatter plugin for Prettier
Formats SQL queries. Part of SQLTools
Fastest full featured PostgreSQL client for Node.js
Postgres everywhere - your data, in sync, wherever you need it.
Ruby library for SQL injection and re-writing in ActiveRecord
Format and rewrite sqls by dir unit
Improving introspection and testability of raw SQL queries in Rails This gem improves introspection and testability of raw SQL queries in Rails by: - ...providing a separate query-folder and easy instantiation A query like `AppQuery[:some_query]` is read from app/queries/some_query.sql. - ...providing options for rewriting a query: Query a CTE by replacing the select: query.select_all(select: "select * from some_cte").entries ...similarly, query the end result (i.e. CTE `_`): query.select_all(select: "select count(*) from _").entries - ...providing (custom) casting: AppQuery("select array[1,2]").select_value(cast: true) custom deserializers: AppQuery("select '1' id").select_all(cast: {"id" => ActiveRecord::Type::Integer.new}).entries - ...providing spec-helpers and generators