{"id":15046028,"url":"https://github.com/sno2/yaml_loader","last_synced_at":"2026-04-18T21:32:44.531Z","repository":{"id":62421615,"uuid":"289559282","full_name":"sno2/yaml_loader","owner":"sno2","description":"A yaml file loader \u0026 parser module for Deno","archived":false,"fork":false,"pushed_at":"2020-08-25T12:55:02.000Z","size":5,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-12T22:59:36.171Z","etag":null,"topics":["deno","deno-module","module","yaml","yaml-files","yaml-parser","yaml-processor"],"latest_commit_sha":null,"homepage":"https://deno.land/x/yaml_loader","language":"TypeScript","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/sno2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-22T20:08:58.000Z","updated_at":"2021-10-30T14:57:34.000Z","dependencies_parsed_at":"2022-11-01T17:31:22.897Z","dependency_job_id":null,"html_url":"https://github.com/sno2/yaml_loader","commit_stats":null,"previous_names":["codingcarter/yaml_loader"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/sno2/yaml_loader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sno2%2Fyaml_loader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sno2%2Fyaml_loader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sno2%2Fyaml_loader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sno2%2Fyaml_loader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sno2","download_url":"https://codeload.github.com/sno2/yaml_loader/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sno2%2Fyaml_loader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28671261,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T20:48:19.482Z","status":"ssl_error","status_checked_at":"2026-01-22T20:48:14.968Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["deno","deno-module","module","yaml","yaml-files","yaml-parser","yaml-processor"],"created_at":"2024-09-24T20:52:36.571Z","updated_at":"2026-01-22T21:06:26.198Z","avatar_url":"https://github.com/sno2.png","language":"TypeScript","readme":"# yaml_loader\n\nYaml Loader is a [Deno module](https://deno.land/x/yaml_loader) that allows you to load yaml files and parse their contents as json.\n\n## Features\n\nYaml Loader will parse your json files using the deno standard library, therefore, there aren't any third-party modules used.\n\n## Usage\n\nBefore using yaml_loader, you must first have Deno installed. If you don't, go to the [Deno Installation page](https://deno.land/#installation) and follow those simple steps :)\n\nAll right, nown that we got that stuff over, you can just use the yaml_loader module in your project by add this simple line of code:\n\n```ts\nimport { YamlLoader } from \"https://deno.land/x/yaml_loader/mod.ts\";\n```\n\nAfter that, we can start utilizing the `YamlLoader` class! The only method inside of the class that you need is `parseFile`. It is an asynchronous method, though, so remember to always await for it to be done ;) Here is an example of using the `YamlLoader`:\n\n\u003e There is a breaking change when updating from v0.0.0 to v0.1.0 The `parseYamlFile` method on `YamlLoader` is now named `parseFile`\n\n```ts\nimport { YamlLoader } from \"https://deno.land/x/yaml_loader/mod.ts\";\n\nconst yamlLoader = new YamlLoader();\n\nconst parsedYamlFile = await yamlLoader.parseFile(\"./foo.yaml\");\n\nconsole.log(parsedYamlFile);\n```\n\nThe above code would parse the `foo.yaml` file and set its json-ified contents to the `parsedYamlFile` constant. After that, we are just logging out the data as an object from `foo.yaml` after it is parsed.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsno2%2Fyaml_loader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsno2%2Fyaml_loader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsno2%2Fyaml_loader/lists"}