A very small Markdown, HTML, and CSS parser.
Option parsing for Node, supporting types, shorthands, etc. Used by npm.
Lexes ES modules returning their import/export metadata
Utility to parse a multpart body into a more usable type.
HTML/XML processor
An evented streaming XML parser in JavaScript
A function to parse floating point hexadecimal strings as defined by the WebAssembly specification
Lexes CommonJS modules, returning their named exports metadata
A very fast HTML parser, generating a simplified DOM, with basic element query support.
lezer-based C++ grammar
YAML 1.2 parser and serializer
Convert Oniguruma patterns to native JavaScript RegExp
base library for oclif CLIs
minimal implementation of a PassThrough stream
A small, fast, and correct TOML parser/serializer
An evented streaming XML parser in JavaScript
A JavaScript parser
A utility package to parse strings
A tool for parsing media query lists.
the mighty option parser used by yargs
Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent data. Supports browser & node.js environment
A Babel preset that enables parsing of proposals supported by the current Node.js version.
Node.js body parsing middleware
Parse binary files with a schema into nicely readable objects
Very small, very fast Ragel/C based ERB parser
Very small, very fast Ragel/C based ERB parser
This is a very simple parser for Facebook Pages (a.k.a fan pages), using the Graph API. This gem was made in 2 hours for an experimental project, so many small fixes need to be made. You're welcome to make a pull request :)'
==== QDox - http://qdox.codehaus.org QDox is a high speed, small footprint parser for extracting class/interface/method definitions from Java source files complete with JavaDoc @tags. It is designed to be used by active code generators or documentation tools. QDox is a Java library. Therefore this RubyGem needs JRuby. ==== Quickstart Step 1: Load your Java sources. In JRuby (or +jirb+) write: require 'qdox' builder = QDox::JavaDocBuilder.new builder.add_source_tree(java.io.File.new(".") (Source: http://qdox.codehaus.org/usage.html) Step 2: Inspect the source model. src = builder.sources.first pkg = src.package puts pkg.name # e.g. "com.bla.foo" imports = src.imports # => e.g. ["java.util.List", "java.util.Set"] some_class = src.classes.first # => a QDox::Model::JavaClass # output the javadoc comment for the first method in some_class puts some_class.methods.first.comment (Source: http://qdox.codehaus.org/model.html) As you may have noticed, the Java packages used have been aliased to shorter Ruby Module names: The Java package com.thoughtworks.qdox is the Ruby module QDox etc. ==== In a Nutshell A custom built parser has been built using JFlex and BYacc/J. These have been chosen because of their proven performance and they require no external libraries at runtime. The parser skims the source files only looking for things of interest such as class/interface definitions, import statements, JavaDoc and member declarations. The parser ignores things such as actual method implementations to avoid overhead (while in method blocks, curly brace counting suffices). The end result of the parser is a very simple document model containing enough information to be useful. ==== License Apache License, Version 2.0 QDox was created by Joe Walnes, Aslak Hellesoy, Paul Hammant, Mike Williams, Mauro Talevi, Robert Scholte, and others. The RubyGem was created by Benjamin Bock.
No description provided.
No description provided.
No description provided.
No description provided.