2016-09-11 17:00:36 +00:00
|
|
|
# Nom is an awesome parser combinators library in Rust
|
|
|
|
|
|
|
|
To get started using nom, you can include it in your Rust projects from
|
|
|
|
[crates.io](https://crates.io/crates/nom). Here are a few links you will find useful:
|
|
|
|
|
2018-08-26 11:37:41 +00:00
|
|
|
* [Reference documentation](https://docs.rs/nom)
|
2016-09-11 17:00:36 +00:00
|
|
|
* [Gitter chat room](https://gitter.im/Geal/nom). You can also go to the #nom IRC
|
|
|
|
channel on irc.mozilla.org, or ping 'geal' on Mozilla, Freenode, Geeknode or oftc IRC
|
2018-07-09 08:10:28 +00:00
|
|
|
* [Making a new parser from scratch](making_a_new_parser_from_scratch.md)
|
2016-09-11 17:00:36 +00:00
|
|
|
(general tips on writing a parser and code architecture)
|
2018-07-09 08:10:28 +00:00
|
|
|
* [How to handle parser errors](error_management.md)
|
|
|
|
* [How nom's macro combinators work](how_nom_macros_work.md)
|
2020-08-01 16:44:02 +00:00
|
|
|
* [Recipes for common nom tasks](nom_recipes.md)
|