awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repositorios

Awesome GitHub RepositoriesSource Code Token Streaming

Incremental processing of programming language tokens to minimize memory usage during lexical analysis.

Distinct from Streaming Tokenization: Candidates focus on AI audio/event streaming or data serialization, whereas this is specifically for programming language source code tokens.

Explore 3 awesome GitHub repositories matching programming languages & runtimes · Source Code Token Streaming. Refine with filters or upvote what's useful.

Awesome Source Code Token Streaming GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • friendsofphp/php-cs-fixerAvatar de FriendsOfPHP

    FriendsOfPHP/PHP-CS-Fixer

    13,534Ver en GitHub↗

    PHP-CS-Fixer is a static analysis tool and code style linter designed to validate PHP code against predefined standards. It functions as a coding standard fixer that automatically detects and corrects style violations to ensure consistent formatting across a codebase. The project serves as a syntax modernizer, providing automated tools to update legacy PHP syntax to align with newer language versions. It also allows for the creation of custom style rules when built-in standards do not meet specific requirements. The tool covers broad capability areas including automated linting workflows and

    Converts PHP source code into a stream of tokens to identify formatting patterns without requiring a full abstract syntax tree.

    PHP
    Ver en GitHub↗13,534
  • sebastianbergmann/php-token-streamAvatar de sebastianbergmann

    sebastianbergmann/php-token-stream

    6,386Ver en GitHub↗

    php-token-stream is a lexical analysis tool and tokenizer wrapper for PHP. It functions as a source code streamer that reads tokens one by one, preventing the need to load entire source files into memory. The project provides memory-efficient parsing by wrapping the native PHP tokenizer extension. This allows for the sequential processing of source code tokens to analyze structural components and syntax. The tool is designed for static code analysis and the development of compiler tooling. It supports linear token processing and sequential traversal to examine language constructs and project

    Implements an iterator-based approach to stream PHP tokens without loading entire source files into memory.

    PHP
    Ver en GitHub↗6,386
  • kucherenko/jscpdAvatar de kucherenko

    kucherenko/jscpd

    5,800Ver en GitHub↗

    jscpd is a code duplication detector that scans source code across 223 languages to find identical or near-identical copy-pasted blocks using a rolling hash algorithm. It is built with a Rust core for high performance, exposed through a Node.js API and CLI, and can be run as a standalone binary with no runtime dependencies. The tool detects duplicates in embedded languages within Vue, Svelte, Astro, and Markdown files by tokenizing each language block separately, and it supports extensionless scripts via shebang detection. The project distinguishes itself through its integration capabilities

    Tokenizes code with format-specific parsers for JS/TS and generic tokenization for 223 languages.

    TypeScriptaiclones-detectioncode-quality
    Ver en GitHub↗5,800
  1. Home
  2. Programming Languages & Runtimes
  3. Source Code Token Streaming

Explorar subetiquetas

  • Format-Specific TokenizersConverts source code into tokens using format-specific parsers for JavaScript and TypeScript and generic line-based tokenization for 223 other languages. **Distinct from Source Code Token Streaming:** Distinct from Source Code Token Streaming: uses per-format parsers for duplication detection, not incremental streaming for lexical analysis.
  • Pattern-Based LexingConverts source code into token streams to identify structural patterns without full AST parsing. **Distinct from Source Code Token Streaming:** Distinct from Source Code Token Streaming by focusing on structural pattern identification rather than memory optimization.