@codemirror/lang-sql

SQL language support for the CodeMirror editor: parsing, syntax highlighting, and schema-aware autocomplete across multiple SQL dialects.

Library
npm
v6.10.0
101stars
MIT License

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
37/100Needs Attention
Development Activity8
Maintenance0
Community60
Maturity60
Momentum20

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
67/100Good
Architecture78
Code Quality62
Innovation58
Learning Curve70

@codemirror/lang-sql is the official SQL language package for the CodeMirror 6 code editor. It provides a Lezer-based grammar for tokenizing SQL, driving syntax highlighting, code folding, and indentation inside any CodeMirror instance, plus a configurable autocompletion layer that can complete SQL keywords and, when given a schema, table and column names.

Rather than shipping a single fixed grammar, the package models SQL as a base tokenizer parameterized by a SQLDialect spec — keyword lists, type names, operator characters, identifier-quoting rules, and string-escaping behavior are all pluggable. This lets one small package cover StandardSQL plus ready-made dialects for PostgreSQL, MySQL, MariaDB, MSSQL, SQLite, Cassandra, and PL/SQL, and lets consumers define entirely custom dialects with SQLDialect.define().

The completion side goes beyond keyword lists: it resolves the syntax tree around the cursor to find table/column context (including detecting FROM ... AS alias aliases), and walks a nested SQLNamespace schema object supplied by the host application to offer contextually correct completions — for example, completing column names only after a recognized table or alias.

As part of the core codemirror organization (alongside @codemirror/lang-javascript, @lezer/*, etc.), it’s the standard way any CodeMirror-based editor, SQL playground, or admin/database UI adds SQL-aware editing without hand-writing a parser or autocomplete source.

What You Get

  • A Lezer-based SQL grammar (sql.grammar) with tokenizers for keywords, identifiers, quoted identifiers, strings, numbers, bit/byte literals, comments, and operators, wired to CodeMirror’s highlighting, folding, and indentation systems
  • Ready-made SQLDialect definitions for StandardSQL, PostgreSQL, MySQL, MariaDB, MSSQL, SQLite, Cassandra, and PL/SQL, each tuning keywords, types, quoting, and comment/escape rules for that vendor
  • SQLDialect.define() and configureLanguage() for defining or extending a fully custom dialect (keyword lists, operator characters, identifier quote characters, bit-literal handling, etc.)
  • keywordCompletionSource() for dialect-aware keyword/type completions, with optional upper-casing and custom Completion object construction
  • schemaCompletionSource() / the schema option on sql() for turning a nested SQLNamespace object (schemas → tables → columns) into context-sensitive completions, including alias resolution from FROM ... AS x clauses
  • A single sql(config) entry point that returns a CodeMirror LanguageSupport extension combining the chosen dialect’s language, keyword completion, and schema completion in one call

Common Use Cases

  • SQL editor in a browser-based data tool - a query builder or database admin UI (e.g. an internal Postgres/MySQL console) embeds CodeMirror and drops in sql({dialect: PostgreSQL, schema}) to get highlighting plus table/column autocomplete straight from the app’s known schema.
  • BI/analytics product query editors - a SaaS analytics or BI dashboard lets users hand-write SQL against their warehouse; lang-sql supplies the editing experience (highlighting, folding, keyword completion) without the product writing its own SQL tokenizer.
  • Multi-dialect developer tooling - a tool that needs to support several database engines (e.g. MySQL and MSSQL) selects the matching built-in SQLDialect per connection rather than maintaining separate parsers.
  • Custom/internal query language editors - teams with a SQL-like DSL use SQLDialect.define() to describe their own keyword and type set and reuse the grammar, tokenizer, and completion machinery instead of writing a bespoke one.
  • Notebook and REPL-style SQL cells - embedded editors in data-notebook products use sql() for consistent, low-effort SQL syntax highlighting inside a broader CodeMirror-based notebook UI.

Under The Hood

Architecture The package layers a Lezer grammar (src/sql.grammar, compiled to sql.grammar.js/.d.ts) underneath two thin coordination modules: sql.ts, which configures the base parser with indentNodeProp/foldNodeProp/styleTags and exposes the SQLDialect class plus the eight built-in dialect constants (StandardSQL, PostgreSQL, MySQL, MariaSQL, MSSQL, SQLite, Cassandra, PLSQL), and complete.ts, which implements schema-aware completion by resolving the CodeMirror syntaxTree around the cursor into an identifier path (walking CompositeIdentifier/alias chains via parentsFor/getAliases) and matching that path against a CompletionLevel tree built from the user-supplied SQLNamespace. tokens.ts supplies the dialect-parameterized tokenizer (tokensFor(dialect)) that the grammar’s tokenizers array swaps in per dialect, so the single compiled grammar is reused across all eight variants rather than each dialect getting its own parser. The core abstraction a consumer depends on is the SQLDialect/SQLConfig contract — changing that would ripple into every dialect definition and the sql() entry point.

Tech Stack Written in TypeScript targeting ES modules ("type": "module"), built via the shared @codemirror/buildhelper tool (cm-buildhelper src/sql.ts in the prepare script) which handles bundling to dist/index.js/dist/index.cjs plus .d.ts generation, giving both ESM and CJS consumers a single entry point. Runtime dependencies are all first-party CodeMirror/Lezer packages — @codemirror/autocomplete, @codemirror/language, @codemirror/state, @lezer/common, @lezer/highlight, @lezer/lr — with no third-party runtime dependencies, keeping the package thin and consistent with the rest of the @codemirror/lang-* family. Tests run via cm-runtests, the shared CodeMirror test runner, rather than a general-purpose framework like Jest or Vitest.

Code Quality Tests live in test/test-tokens.ts and test/test-complete.ts using the ist assertion library and Mocha-style describe/it blocks, covering dialect-specific tokenization (bit literals, dollar-quoted strings, quoted identifiers) and completion behavior (schema traversal, alias resolution, quoting). Source files are compact and single-purpose (sql.ts, complete.ts, tokens.ts), use consistent camelCase naming, and lean on TypeScript’s type system for the public API (SQLDialectSpec, SQLConfig, SQLNamespace) with doc comments (///) that double as the source for the generated API reference in the README. Error handling is minimal by design — malformed input is left to the parser’s error-recovery grammar rather than throwing, which is standard for an incremental editor parser.

What Makes It Unique Rather than one grammar per SQL vendor, the package’s Dialect-parameterized tokenizer lets a single compiled Lezer grammar serve StandardSQL and seven vendor dialects by swapping keyword/type/operator/quoting tables at configuration time, and exposes that same mechanism publicly via SQLDialect.define() so consumers can add dialects the maintainers never anticipated. Its completion layer goes beyond flat keyword lists by resolving real syntactic context — including alias tracking through FROM ... AS clauses — against an arbitrarily nested schema object, which is a deeper level of schema-awareness than most lightweight editor-completion integrations attempt.

Used by 27 apps in this directory

Java
78%
GPL 3.0

DataEase

Analytics · Data Engineering · AI Assistants

24,408

Open-source BI tool with drag-and-drop dashboards, 20+ data source connectors, and AI-powered natural language queries — a self-hosted alternative to Tableau.

View details
93
Repo Health
71
Technical
65
Dependency
Built with
Java78%
Vue22%
Updated 3 days ago
TypeScript
65%
Other

Epicenter

Knowledge Management · Note Taking · Developer Tools

4,790

A local-first monorepo led by Whispering, an open-source speech-to-text app, built on an MIT toolkit that turns your data into plain Markdown and SQLite files you own instead of a database you rent.

View details
88
Repo Health
90
Technical
68
Dependency
Built with
TypeScript65%
Svelte13%
HTML12%
Updated yesterday
TypeScript
82%
MIT

evidence

Analytics · Data Engineering

6,911

Turn SQL queries and markdown files into polished, interactive data apps and business intelligence reports — no drag-and-drop, no GUI, just code.

View details
87
Repo Health
79
Technical
64
Dependency
Built with
TypeScript82%
Svelte18%
Updated 3 days ago
Python
64%
MIT

Flowfile

Data Engineering

350

Visual ETL that compiles to Polars — build pipelines on a canvas, export as standalone Python, and run anywhere without platform lock-in.

View details
83
Repo Health
81
Technical
66
Dependency
Built with
Python64%
Vue18%
TypeScript16%
Updated yesterday
TypeScript
49%
AGPL 3.0

Grafana

Monitoring · Analytics

76,643

The open-source observability platform that unifies metrics, logs, and traces from any data source into dynamic, queryable dashboards.

View details
95
Repo Health
91
Technical
63
Dependency
Built with
TypeScript49%
Go45%
Updated today
TypeScript
71%
Other

highlight.io

Developer Tools · Analytics · Monitoring

9,372

Open-source full-stack monitoring that unifies session replay, error tracking, logging, and distributed tracing so you can stop context-switching between tools.

View details
69
Repo Health
78
Technical
65
Dependency
Built with
TypeScript71%
Go16%
Updated 2 weeks ago
Go
60%
MIT

hoop

Security · Monitoring

807

A wire-protocol gateway that enforces data masking, command blocking, approval workflows, and full session recording for engineers and AI agents accessing production infrastructure.

View details
85
Repo Health
80
Technical
64
Dependency
Built with
Go60%
Clojure19%
JavaScript14%
Updated 3 days ago
TypeScript
96%
MIT

HyperDX

Developer Tools · Analytics · Monitoring

9,873

Open source observability platform that unifies logs, traces, metrics, and session replays on ClickHouse — now the core of ClickStack.

View details
88
Repo Health
83
Technical
68
Dependency
Built with
TypeScript96%
Updated yesterday
TypeScript
100%
Apache 2.0

ILLA Builder

Developer Tools · Low Code Platforms · No Code Platforms

12,312

Open-source low-code platform for building internal tools with drag-and-drop UI, reactive data bindings, and real-time collaboration.

View details
57
Repo Health
71
Technical
63
Dependency
Built with
TypeScript100%
Updated 3 months ago

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search