snapdragon
Last updated
Was this helpful?
Last updated
Was this helpful?
Fast, pluggable and easy-to-use parser-renderer factory.
Install with :
Created by and .
Features
Bootstrap your own parser, get sourcemap support for free
All parsing and compiling is handled by simple, reusable middleware functions
Inspired by the parsers in and .
Breaking changes
Substantial breaking changes were made in v0.5.0! Most of these changes are part of a larger refactor that will be finished in 0.6.0, including the introduction of a Lexer
class.
Renderer was renamed to Compiler
the .render
method was renamed to .compile
Many other smaller changes. A more detailed overview will be provided in 0.6.0. If you don't have to time review code, I recommend you wait for the 0.6.0 release.
Parse
Render
Parsers
Parsers are middleware functions used for parsing a string into an ast node.
AST node
When the parser finds a match, pos()
is called, pushing a token for that node onto the ast that looks something like:
Renderers
Renderers are named middleware functions that visit over an array of ast nodes to compile a string.
Source maps
If you want source map support, make sure to emit the position as well.
A parser middleware is a function that returns an abject called a token
. This token is pushed onto the AST as a node.
Example token
Example parser middleware
Match a single .
in a string:
Get the starting position by calling this.position()
pass a regex for matching a single dot to the .match
method
if no match is found, return undefined
if a match is found, pos()
is called, which returns a token with:
type
: the name of the [compiler] to use
val
: The actual value captured by the regex. In this case, a .
. Note that you can capture and return whatever will be needed by the corresponding [compiler].
The ending position: automatically calculated by adding the length of the first capture group to the starting position.
Renderers are run when the name of the compiler middleware matches the type
defined on an ast node
(which is defined in a parser).
Example
Exercise: Parse a dot, then compile it as an escaped dot.
Create a new Parser
with the given input
and options
.
Params
input
{String}
options
{Object}
Define a non-enumberable property on the Parser
instance.
Example
Params
key
{String}: propery name
val
{any}: property value
returns
{Object}: Returns the Parser instance for chaining.
Set parser name
with the given fn
Params
name
{String}
fn
{Function}
Get parser name
Params
name
{String}
Push a token
onto the type
stack.
Params
type
{String}
returns
{Object} token
Pop a token off of the type
stack
Params
type
{String}
returns
{Object}: Returns a token
Return true if inside a stack
node. Types are braces
, parens
or brackets
.
Params
type
{String}
returns
{Boolean}
Example
Params
node
{Object}
type
{String}
returns
{Boolean}
Define a non-enumberable property on the Compiler
instance.
Example
Params
key
{String}: propery name
val
{any}: property value
returns
{Object}: Returns the Compiler instance for chaining.
Commits
Contributor
106
2
Install dev dependencies:
Jon Schlinkert
See the .
: Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces… |
: Expand POSIX bracket expressions (character classes) in glob patterns. |
: Convert extended globs to regex-compatible strings. Add (almost) the expressive power of regular expressions to… |
: Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. |
Pull requests and stars are always welcome. For bugs and feature requests, .
(This document was generated by (a generator), please don't edit the readme directly. Any changes to the readme must be made in .)
To generate the readme and API documentation with :
Copyright © 2016, . Released under the .
This file was generated by , v0.1.31, on October 10, 2016.