{"id":32122147,"url":"https://github.com/sera1mu/deno_mecab","last_synced_at":"2026-02-21T11:31:48.933Z","repository":{"id":46983230,"uuid":"393831259","full_name":"sera1mu/deno_mecab","owner":"sera1mu","description":"🇯🇵 Analyze Japanese from Deno with MeCab","archived":false,"fork":false,"pushed_at":"2023-03-18T23:37:32.000Z","size":106,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-15T03:43:29.941Z","etag":null,"topics":["deno","deno-module","javascript","mecab","typescript"],"latest_commit_sha":null,"homepage":"https://doc.deno.land/https/deno.land/x/deno_mecab/mod.ts","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/sera1mu.png","metadata":{"files":{"readme":"README.ja.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2021-08-08T01:54:25.000Z","updated_at":"2023-12-14T13:25:26.000Z","dependencies_parsed_at":"2024-11-17T14:11:13.051Z","dependency_job_id":"6df108b9-0f09-4d15-9b07-819d7a5cf9b3","html_url":"https://github.com/sera1mu/deno_mecab","commit_stats":{"total_commits":103,"total_committers":2,"mean_commits":51.5,"dds":0.2524271844660194,"last_synced_commit":"5183f06a44316ec9c6e696dfdac5cad84295d2de"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/sera1mu/deno_mecab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sera1mu%2Fdeno_mecab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sera1mu%2Fdeno_mecab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sera1mu%2Fdeno_mecab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sera1mu%2Fdeno_mecab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sera1mu","download_url":"https://codeload.github.com/sera1mu/deno_mecab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sera1mu%2Fdeno_mecab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29679810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T11:29:27.227Z","status":"ssl_error","status_checked_at":"2026-02-21T11:29:20.292Z","response_time":107,"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","javascript","mecab","typescript"],"created_at":"2025-10-20T20:24:37.381Z","updated_at":"2026-02-21T11:31:48.928Z","avatar_url":"https://github.com/sera1mu.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# deno_mecab\n\n[![Test](https://img.shields.io/github/actions/workflow/status/sera1mu/deno_mecab/test.yml?branch=main\u0026label=Test\u0026logo=github\u0026logoColor=silver)](https://github.com/sera1mu/deno-mecab/actions/workflows/test.yml)\n[![Lint](https://img.shields.io/github/actions/workflow/status/sera1mu/deno_mecab/lint.yml?branch=main\u0026label=lint\u0026logo=github\u0026logoColor=silver)](https://github.com/sera1mu/deno-mecab/actions/workflows/check-code.yml)\n[![Test Coverage](https://img.shields.io/codeclimate/coverage/sera1mu/deno-mecab?logo=Code%20Climate)](https://codeclimate.com/github/sera1mu/deno-mecab/test_coverage)\n[![Maintainability](https://img.shields.io/codeclimate/maintainability/sera1mu/deno-mecab?logo=Code%20Climate)](https://codeclimate.com/github/sera1mu/deno-mecab/maintainability)\n[![license](https://img.shields.io/github/license/sera1mu/deno-mecab)](https://github.com/sera1mu/deno-mecab/blob/main/LICENSE)\n\n### [English](https://github.com/sera1mu/deno-mecab/blob/main/README.md) | 日本語\n\ndeno_mecabは、MeCabを用いた非同期の日本語形態素解析モジュールです。\n\n## Getting Started\n\n### Requirements\n\n- [Deno](https://deno.land)\n- [MeCab](https://taku910.github.io/mecab/)\n- MeCab 辞書\n  - [mecab-ipadic](https://github.com/taku910/mecab/tree/master/mecab-ipadic)\n  - [mecab-jumandic](https://github.com/taku910/mecab/tree/master/mecab-jumandic)\n  - [mecab-ipadic-neologd](https://github.com/neologd/mecab-ipadic-neologd)\n\n### Example\n\n簡単な例として、これを実行してみてください:\n\n```\ndeno run --allow-run https://deno.land/x/deno_mecab/example.ts\n```\n\n実行されるスクリプト:\n\n```ts\nimport MeCab from \"https://deno.land/x/deno_mecab@v1.2.2/mod.ts\";\n\nconst mecab = new MeCab([\"mecab\"]);\n\nconst text = \"JavaScriptはとても楽しいです。\";\n\n// Parse (形態素解析)\nconsole.log(await mecab.parse(text));\n// [{surface: \"JavaScript\", feature: \"名詞\", featureDetails: [ \"固有名詞\", \"組織\", \"*\" ], ...\n\n// Dump (ダンプ出力)\nconsole.log(await mecab.dump(text));\n// [{nodeId: 0, surface: \"BOS\", feature: \"BOS/EOS\", featureDetails: [ \"*\", \"*\", \"*\" ], ...\n\n// Wakati (わかち書き)\nconsole.log(await mecab.wakati(\"JavaScriptはとても楽しいです。\"));\n// [ \"JavaScript\", \"は\", \"とても\", \"楽しい\", \"です\", \"。\" ]\n\n// Yomi (読み付与)\nconsole.log(await mecab.yomi(\"日本語\"));\n// ニホンゴ\n```\n\n## Maintainer\n\n[@sera1mu](https://github.com/sera1mu)\n\n## License\n\nMIT \u0026copy; 2021 Seraimu\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsera1mu%2Fdeno_mecab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsera1mu%2Fdeno_mecab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsera1mu%2Fdeno_mecab/lists"}