{"id":49317484,"url":"https://github.com/absorpheus/ts-repl","last_synced_at":"2026-04-26T16:02:53.012Z","repository":{"id":269503690,"uuid":"906370508","full_name":"absorpheus/ts-repl","owner":"absorpheus","description":"Fast, local, Replit-like environment for exploring TypeScript.","archived":false,"fork":false,"pushed_at":"2025-09-11T10:35:42.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-11T13:28:14.466Z","etag":null,"topics":["javascript","nodejs","playground","repl","ts","typescript","typescript-node","vscode"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/absorpheus.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-20T18:45:12.000Z","updated_at":"2025-09-11T10:35:45.000Z","dependencies_parsed_at":"2024-12-24T03:39:58.139Z","dependency_job_id":"e93a38ea-c8d5-48a8-a377-1d1a818b1cc3","html_url":"https://github.com/absorpheus/ts-repl","commit_stats":null,"previous_names":["absorpheus/typescript-repl","absorpheus/ts-repl"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/absorpheus/ts-repl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/absorpheus%2Fts-repl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/absorpheus%2Fts-repl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/absorpheus%2Fts-repl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/absorpheus%2Fts-repl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/absorpheus","download_url":"https://codeload.github.com/absorpheus/ts-repl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/absorpheus%2Fts-repl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32303177,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T09:34:17.070Z","status":"ssl_error","status_checked_at":"2026-04-26T09:34:00.993Z","response_time":129,"last_error":"SSL_read: 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":["javascript","nodejs","playground","repl","ts","typescript","typescript-node","vscode"],"created_at":"2026-04-26T16:02:52.540Z","updated_at":"2026-04-26T16:02:53.002Z","avatar_url":"https://github.com/absorpheus.png","language":"TypeScript","readme":"# ts-repl\n\nts-repl is a super-fast environment for exploring and experimenting with TypeScript on your local machine. Designed to run seamlessly within VSCode, it enables quick feedback and smooth experimentation.\n\n## Features\n\n- Blazing-fast transpilation: Built on SWC for near-instant code transformations.\n- Local integration: Designed to work directly within VSCode, leveraging your local setup.\n- Simple and lightweight: A minimal yet powerful setup for experimenting with TypeScript.\n\n## Installation\n\n### Prerequisites\n\n- Install [Node.js](https://nodejs.org/) (LTS or Current)\n- Install [VSCode](https://code.visualstudio.com/download)\n\n### Installation\n\nFirst, install dependencies with `npm`.\n\n```bash\nnpm install\n```\n\nOpen the project in VSCode:\n\n```bash\ncode .\n```\n\n### Install recommended extensions\n\nThe workspace includes a list of suggested extensions to enhance your development experience. When you open the project in VSCode, it will prompt you to install these recommended extensions.\n\nIf the notification doesn't show up you can manually open up Recommended Extensions settings as follows:\n\n- Open the command palette CMD + Shift + p\n- Type Show Recommended Extensions\n\nAll the extensions can be installed together or only required extensions can be installed.\n\nThe following extensions are suggested:\n\n- Error Lens (usernamehw.errorlens) – Highlights errors and warnings directly in your code.\n\n- TwoSlash Queries (orta.vscode-twoslash-queries) – Enables TypeScript annotations and inline queries.\n\n- Pretty TypeScript Errors (yoavbls.pretty-ts-errors) – Improves the readability of TypeScript error messages.\n\n- Prettier (esbenp.prettier-vscode) – A popular code formatter for consistent styling.\n\n### Keybindings\n\nTo achieve functionality similar to Replit, add these entries to your keybindings.json file.\n\n```json\n[\n  {\n    \"key\": \"cmd+enter\",\n    \"command\": \"workbench.action.tasks.runTask\",\n    \"args\": \"build\",\n    \"when\": \"editorTextFocus \u0026\u0026 (editorLangId == 'swift' || editorLangId == 'typescript') \u0026\u0026 config.workspaceKeybindings.repl.enabled\"\n  },\n  {\n    \"key\": \"cmd+enter\",\n    \"command\": \"workbench.action.tasks.terminate\",\n    \"args\": \"terminateAll\",\n    \"when\": \"taskRunning \u0026\u0026 editorTextFocus \u0026\u0026 (editorLangId == 'swift' || editorLangId == 'typescript') \u0026\u0026 config.workspaceKeybindings.repl.enabled\"\n  }\n]\n```\n\n## Usage\n\n1. Open `src/index.ts`\n\n2. Start experimenting with TypeScript syntax and features.\n\n3. Update results on demand with Command+Enter, similar to Replit.\n\n## Contributing\n\nWe welcome contributions! If you have ideas for new features, improvements, or bug fixes, feel free to open an issue or submit a pull request.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabsorpheus%2Fts-repl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabsorpheus%2Fts-repl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabsorpheus%2Fts-repl/lists"}