{"id":23952470,"url":"https://github.com/rencryptofish/codemirror-lang-vyper","last_synced_at":"2026-02-28T22:01:17.753Z","repository":{"id":186803019,"uuid":"675138748","full_name":"rencryptofish/codemirror-lang-vyper","owner":"rencryptofish","description":"CodeMirror 6 extension for Vyper language support and syntax highlighting","archived":false,"fork":false,"pushed_at":"2023-08-07T18:26:08.000Z","size":140,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-16T22:18:40.658Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vyper","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/rencryptofish.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}},"created_at":"2023-08-05T23:07:20.000Z","updated_at":"2023-08-07T16:54:41.000Z","dependencies_parsed_at":"2023-08-07T20:35:49.494Z","dependency_job_id":null,"html_url":"https://github.com/rencryptofish/codemirror-lang-vyper","commit_stats":null,"previous_names":["rencryptofish/codemirror-lang-vyper"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rencryptofish/codemirror-lang-vyper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rencryptofish%2Fcodemirror-lang-vyper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rencryptofish%2Fcodemirror-lang-vyper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rencryptofish%2Fcodemirror-lang-vyper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rencryptofish%2Fcodemirror-lang-vyper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rencryptofish","download_url":"https://codeload.github.com/rencryptofish/codemirror-lang-vyper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rencryptofish%2Fcodemirror-lang-vyper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29953212,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T18:42:55.706Z","status":"ssl_error","status_checked_at":"2026-02-28T18:42:48.811Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2025-01-06T13:58:45.603Z","updated_at":"2026-02-28T22:01:17.734Z","avatar_url":"https://github.com/rencryptofish.png","language":"Vyper","funding_links":[],"categories":[],"sub_categories":[],"readme":"# codemirror-lang-vyper\nA CodeMirror extension that provides Vyper syntax highlighting and language support. This is a work in progress.\n\n![Screenshot](/public/cm-vyper-support.png)\n\n## Usage\n\n```ts\nimport { basicSetup } from 'codemirror';\nimport { EditorView, keymap } from '@codemirror/view';\nimport { EditorState } from '@codemirror/state';\nimport { indentWithTab } from '@codemirror/commands';\nimport { vyper } from '../src';\n\n// Fetch the content of example.vy\nfetch('/example.vy')\n    .then(response =\u003e response.text())\n    .then(doc =\u003e {\n        new EditorView({\n            state: EditorState.create({\n                doc,  // use the fetched content here\n                extensions: [\n                    basicSetup,\n                    keymap.of([indentWithTab]),\n                    vyper,\n                ],\n            }),\n            parent: document.querySelector('#editor'),\n        });\n    })\n    .catch(error =\u003e {\n        console.error(\"Error fetching the Vyper file:\", error);\n    });\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frencryptofish%2Fcodemirror-lang-vyper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frencryptofish%2Fcodemirror-lang-vyper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frencryptofish%2Fcodemirror-lang-vyper/lists"}