npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fazelstudio/codemirror-lang-c

v0.1.0

Published

C language support for the CodeMirror code editor

Readme

@fazelstudio/codemirror-lang-c

Native C language support for CodeMirror 6 using a dedicated Lezer grammar.

Overview

This package provides native CodeMirror 6 support for the C programming language. It is:

  • Not a C++ wrapper
  • Not a CodeMirror 5 mode wrapper
  • Not a thin alias around @codemirror/legacy-modes

Instead, it uses a purpose-built Lezer grammar that provides:

  • Syntax highlighting
  • Code indentation
  • Code folding
  • Incremental parsing
  • Useful syntax tree structure

Installation

npm install @fazelstudio/codemirror-lang-c

Usage

import {EditorState} from "@codemirror/state"
import {EditorView} from "@codemirror/view"
import {basicSetup} from "codemirror"
import {c} from "@fazelstudio/codemirror-lang-c"

const state = EditorState.create({
  doc: `#include <stdio.h>

struct User {
  int id;
  const char *name;
};

int main(void) {
  struct User user = {1, "Fazel"};
  printf("%s\\n", user.name);
  return 0;
}`,
  extensions: [
    basicSetup,
    c(),
  ],
})

new EditorView({
  state,
  parent: document.body,
})

API

cLanguage

The LRLanguage instance for C. Can be used directly for advanced use cases:

import {cLanguage} from "@fazelstudio/codemirror-lang-c"

// Access the underlying parser
const parser = cLanguage.parser

c()

Creates a LanguageSupport instance with C language support:

import {c} from "@fazelstudio/codemirror-lang-c"

const support = c()

Supported C Standard

Baseline: ISO C17 (ISO/IEC 9899:2018)

The parser targets C17 core syntax. The following C23 features are recognized where cleanly implementable:

  • _Static_assert (actually C11 but widely used)
  • _Noreturn
  • _Alignas / _Alignof
  • _Atomic
  • _Thread_local
  • Generic selection (_Generic)

Not claimed as full C23 support - specific features are documented individually.

Supported Extensions

The parser tolerates common compiler extensions:

  • __attribute__((...))
  • __declspec(...)
  • typeof(...) / __typeof__
  • __asm__ / asm(...)

These are recognized but not deeply integrated into semantic highlighting.

Limitations

This package is a syntax parser, not a full C compiler:

  1. Semantic ambiguity: Some constructs (e.g., foo * bar;) require semantic information to distinguish declaration from expression.

  2. Macro expansion: Preprocessor directives are recognized and highlighted, but macros are not expanded.

  3. Type tracking: The parser doesn't track typedef declarations or struct tags for semantic highlighting.

  4. Complete C23: Not all C23 features are implemented.

Differences from Related Packages

| Package | Relationship | |---------|---------------| | @codemirror/lang-cpp | C++ support only, not C | | @codemirror/legacy-modes | CodeMirror 5 API, not native CM6 |

This package is specifically for C and uses a dedicated Lezer grammar.

Development

# Install dependencies
npm install

# Build the grammar
npm run build:grammar

# Build the package
npm run build

# Run tests
npm test

# Watch mode
npm run watch

License

MIT