{"id":15686494,"url":"https://github.com/kuuote/deno-lsp_stream","last_synced_at":"2026-06-19T18:31:44.246Z","repository":{"id":225617319,"uuid":"742806949","full_name":"kuuote/deno-lsp_stream","owner":"kuuote","description":"Deno module that TransformStream for handling LSP Base Protocol","archived":false,"fork":false,"pushed_at":"2024-04-11T15:45:50.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-12T14:58:44.474Z","etag":null,"topics":["deno","language-server-protocol"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kuuote.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2024-01-13T12:32:10.000Z","updated_at":"2024-01-13T12:35:33.000Z","dependencies_parsed_at":"2024-03-03T09:29:03.521Z","dependency_job_id":"938989dd-7f84-4ae5-9c4a-bb8349c74251","html_url":"https://github.com/kuuote/deno-lsp_stream","commit_stats":null,"previous_names":["kuuote/deno-lsp_stream"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/kuuote/deno-lsp_stream","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuuote%2Fdeno-lsp_stream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuuote%2Fdeno-lsp_stream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuuote%2Fdeno-lsp_stream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuuote%2Fdeno-lsp_stream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kuuote","download_url":"https://codeload.github.com/kuuote/deno-lsp_stream/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kuuote%2Fdeno-lsp_stream/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34544403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-19T02:00:06.005Z","response_time":61,"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":["deno","language-server-protocol"],"created_at":"2024-10-03T17:40:27.140Z","updated_at":"2026-06-19T18:31:44.228Z","avatar_url":"https://github.com/kuuote.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lsp_stream\n\nIt provides Decoder/Encoder of\n[Base Protocol of Language Server Protocol](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#baseProtocol)\n\n```typescript\nimport { LspEncoderStream } from \"./lsp_stream.ts\";\nimport { JsonStringifyStream } from \"jsr:/@std/json@0.222.1\";\n\nconst stream = new JsonStringifyStream();\nconst writer = stream.writable.getWriter();\nstream.readable\n  .pipeThrough(new LspEncoderStream())\n  .pipeTo(Deno.stdout.writable);\nawait writer.write({ foo: \"bar\" });\nawait writer.write({ baz: 100 });\n```\n\n```typescript\nimport { LspDecoderStream } from \"./lsp_stream.ts\";\n\nconst stream = Deno.stdin.readable\n  .pipeThrough(new LspDecoderStream());\nconst reader = stream.getReader();\nconst result = await reader.read();\nif (!result.done) {\n  const msg = JSON.parse(result.value);\n}\n```\n\n# License\n\nNYSL\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuuote%2Fdeno-lsp_stream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkuuote%2Fdeno-lsp_stream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkuuote%2Fdeno-lsp_stream/lists"}