{"id":32958259,"url":"https://github.com/furesoft/Silverfly","last_synced_at":"2025-11-16T17:02:04.691Z","repository":{"id":163857491,"uuid":"639298113","full_name":"furesoft/Silverfly","owner":"furesoft","description":"Build parsers easily","archived":false,"fork":false,"pushed_at":"2025-11-14T18:35:48.000Z","size":931,"stargazers_count":23,"open_issues_count":9,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-15T16:25:29.889Z","etag":null,"topics":["dsl","dsl-syntax","help-wanted","parser","parser-library","parsing","pratt","pratt-parser","pratt-parsing","syntax","syntax-tree"],"latest_commit_sha":null,"homepage":"https://furesoft.gitbook.io/silverfly","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/furesoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"furesoft","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":"furesoft","lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":"furesoft","custom":null}},"created_at":"2023-05-11T07:23:17.000Z","updated_at":"2025-11-14T18:35:51.000Z","dependencies_parsed_at":"2024-06-25T15:47:06.025Z","dependency_job_id":"8165c6c7-80be-4cc7-abc3-0d8a5e8bcf2d","html_url":"https://github.com/furesoft/Silverfly","commit_stats":null,"previous_names":["furesoft/silverfly"],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/furesoft/Silverfly","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furesoft%2FSilverfly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furesoft%2FSilverfly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furesoft%2FSilverfly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furesoft%2FSilverfly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/furesoft","download_url":"https://codeload.github.com/furesoft/Silverfly/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furesoft%2FSilverfly/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284734138,"owners_count":27054622,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-16T02:00:05.974Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dsl","dsl-syntax","help-wanted","parser","parser-library","parsing","pratt","pratt-parser","pratt-parsing","syntax","syntax-tree"],"created_at":"2025-11-12T23:00:34.018Z","updated_at":"2025-11-16T17:02:04.681Z","avatar_url":"https://github.com/furesoft.png","language":"C#","readme":"# Silverfly\n\n[![CodeFactor](https://www.codefactor.io/repository/github/furesoft/silverfly/badge)](https://www.codefactor.io/repository/github/furesoft/silverfly)\n![NuGet Version](https://img.shields.io/nuget/v/silverfly)\n![NuGet Downloads](https://img.shields.io/nuget/dt/Silverfly)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n![Discord](https://img.shields.io/discord/455738571186241536)\n![Libraries.io SourceRank](https://img.shields.io/librariesio/sourcerank/nuget/silverfly)\n[![](https://tokei.rs/b1/github/furesoft/Silverfly)](https://github.com/furesoft/Silverfly)\n\nSilverfly is a versatile parsing framework that provides extensive support for building custom parsers with ease. It\nsupports Pratt parsing, a powerful method for parsing expressions and statements in a flexible manner.\n\n## Features\n\n- **Flexible Parsing**: Supports Pratt parsing for complex expression handling.\n- **Extensible**: Easily extend the parser and lexer with custom rules.\n- **Documentation**: Comprehensive instructions available in the wiki.\n\n## Installation\n\nTo install Silverfly, you can use NuGet:\n\n```bash\ndotnet add package Silverfly\n```\n\n## Usage\n\n```csharp\n﻿using Silverfly;\n\nnamespace Sample;\n\npublic class Program\n{\n    public static void Main(string[] args)\n    {\n        while (true)\n        {\n            Console.Write(\"\u003e \");\n            var input = Console.ReadLine();\n\n            var parsed = new ExpressionGrammar().Parse(input);\n            var context = new EvaluationContext();\n            EvaluationListener.Listener.Listen(context, parsed.Tree);\n\n            Console.WriteLine(\"\u003e \" + evaluated);\n        }\n    }\n}\n```\n\nFor more detailed instructions and advanced usage, please refer to\nthe [wiki](https://furesoft.gitbook.io/silverfly).\nA great example can be found [here](https://github.com/furesoft/Silverfly/blob/main/Source/Samples/Sample.FuncLanguage/ExpressionGrammar.cs)\n\nSilverfly uses the brilliant library from [MrKWatkins](https://github.com/MrKWatkins/Ast/) to build an AST.\n\n## Contributing\n\nWe welcome contributions! Please see our contributing guidelines for more details on how to get involved.\n","funding_links":["https://github.com/sponsors/furesoft","https://issuehunt.io/r/furesoft","https://buymeacoffee.com/furesoft"],"categories":["Parser Library","Parsing"],"sub_categories":["GUI - other"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffuresoft%2FSilverfly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffuresoft%2FSilverfly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffuresoft%2FSilverfly/lists"}