{"id":20506380,"url":"https://github.com/delta456/playground","last_synced_at":"2026-03-19T16:09:09.838Z","repository":{"id":183051561,"uuid":"669530385","full_name":"Delta456/playground","owner":"Delta456","description":"V Playground: run, edit, share V code online","archived":false,"fork":false,"pushed_at":"2023-07-22T15:25:14.000Z","size":8429,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-23T01:55:10.475Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://play.vosca.dev","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"vlang-association/playground","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Delta456.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-07-22T15:22:17.000Z","updated_at":"2023-07-23T15:11:42.000Z","dependencies_parsed_at":"2023-07-22T16:40:39.953Z","dependency_job_id":null,"html_url":"https://github.com/Delta456/playground","commit_stats":null,"previous_names":["delta456/playground"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Delta456/playground","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Delta456%2Fplayground","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Delta456%2Fplayground/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Delta456%2Fplayground/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Delta456%2Fplayground/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Delta456","download_url":"https://codeload.github.com/Delta456/playground/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Delta456%2Fplayground/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29682749,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T13:29:26.630Z","status":"ssl_error","status_checked_at":"2026-02-21T13:26:50.125Z","response_time":107,"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":"2024-11-15T19:56:43.185Z","updated_at":"2026-02-21T14:02:35.189Z","avatar_url":"https://github.com/Delta456.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# V Playground: Run, Edit, Share V Code Online\n\n[![Association Official Project][AssociationOfficialBadge]][AssociationUrl]\n\nThe [V Playground](https://play.vosca.dev) is a place where you can run, edit and share V\ncode online.\nDocumentation can be found in the\n[V Playground Documentation](https://docs.vosca.dev/tools/playground.html) section.\n\n![](./docs/images/cover.png)\n\n## Features\n\n- Nice and clean UI\n- Powerful editor with syntax highlighting and auto-completion\n- Ability to [run code as tests](https://docs.vosca.dev/tools/playground.html#test)\n- Ability\n  to [see generated C code](https://docs.vosca.dev/tools/playground.html#show-generated-c-code)\n  for passed V code\n- Pass [flags](https://docs.vosca.dev/tools/playground.html#pass-arguments-to-compiler) to V\n  compiler and binary\n- [Shareable](https://docs.vosca.dev/tools/playground.html#share-code) code and editor state\n  via URL or local storage\n\n## Developing\n\nFirst, clone the repository:\n\n```bash\ngit clone https://github.com/vlang-association/playground\ncd playground\n```\n\nInstall V dependencies:\n\n```bash\nnpm run install-server-deps\n```\n\n### Quick, containerized local development (recommended)\n\n#### Using Docker Compose\n\n```bash\nnpm run run-docker\n```\n\nthen access the playground at \u003chttp://localhost:5555\u003e\n\n### Using VSCode DevContainers\n\n1. Install Docker\n2. Install [Visual Studio Code](https://code.visualstudio.com/)\n3. Install the\n   [Remote Development](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack)\n   extension for VS Code\n4. Clone \u003chttps://github.com/vlang-association/playground\u003e\n5. Create your application within a container (see gif below)\n\nDone.\nAnd your system will remain \"clean\".\n\n![vscode-open-in-container](https://user-images.githubusercontent.com/17727170/197407889-88fe33b0-8e95-47fe-b2db-598fd307140e.gif)\n\nThen just run:\n\n```sh\nnpm run serve\n```\n\nthen access the playground at \u003chttp://localhost:5555\u003e\n\n### Run the playground locally\n\n```bash\nnpm run local-serve\n```\n\nthen access the playground at \u003chttp://localhost:5555\u003e\n\n### Run the playground locally inside isolate (as on play.vosca.dev)\n\n\u003e NOTE: Only works on Linux, since it uses `isolate`.\n\n#### Install Dependencies\n\n\u003e We use isolate to sandbox the playground, so you need to install it first.\n\n```bash\ngit clone https://github.com/ioi/isolate /tmp/isolate\ncd /tmp/isolate\nmake isolate isolate-check-environment\nmake install\n```\n\n#### Run the server\n\n```bash\nnpm run serve\n```\n\nthen access the playground at \u003chttp://localhost:5555\u003e\n\n## Server API\n\nSee [server/README.md](./server/README.md) for more information about the server API.\n\n## License\n\nThis project is under the **MIT License**.\nSee the\n[LICENSE](https://github.com/vlang-association/playground/blob/main/LICENSE)\nfile for the full license text.\n\n[AssociationOfficialBadge]: https://vosca.dev/badge.svg\n\n[AssociationUrl]: https://vosca.dev\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdelta456%2Fplayground","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdelta456%2Fplayground","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdelta456%2Fplayground/lists"}