{"id":15047971,"url":"https://github.com/jeheecheon/create-algorithm","last_synced_at":"2026-02-19T17:31:16.242Z","repository":{"id":250649189,"uuid":"835040837","full_name":"jeheecheon/create-algorithm","owner":"jeheecheon","description":"Algorithm starter template","archived":false,"fork":false,"pushed_at":"2025-12-16T16:43:55.000Z","size":16544,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-20T07:38:51.080Z","etag":null,"topics":["algorithm","backjoon","cpp","javascript","template","typescript"],"latest_commit_sha":null,"homepage":"https://blog.jeheecheon.com","language":"JavaScript","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/jeheecheon.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}},"created_at":"2024-07-29T03:26:47.000Z","updated_at":"2025-12-16T16:42:23.000Z","dependencies_parsed_at":"2025-04-15T00:45:42.900Z","dependency_job_id":null,"html_url":"https://github.com/jeheecheon/create-algorithm","commit_stats":null,"previous_names":["jeheecheon/create-js-ts-backjoon","jeheecheon/create-backjoon","jeheecheon/create-algorithm"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/jeheecheon/create-algorithm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeheecheon%2Fcreate-algorithm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeheecheon%2Fcreate-algorithm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeheecheon%2Fcreate-algorithm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeheecheon%2Fcreate-algorithm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jeheecheon","download_url":"https://codeload.github.com/jeheecheon/create-algorithm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeheecheon%2Fcreate-algorithm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29624499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T13:04:20.082Z","status":"ssl_error","status_checked_at":"2026-02-19T13:03:33.775Z","response_time":117,"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":["algorithm","backjoon","cpp","javascript","template","typescript"],"created_at":"2024-09-24T21:06:23.133Z","updated_at":"2026-02-19T17:31:16.224Z","avatar_url":"https://github.com/jeheecheon.png","language":"JavaScript","readme":"## Preview 미리보기\n![example](https://github.com/user-attachments/assets/480b41b1-ac1f-48a4-900b-a863109e478d)\n\n# create-algorithm\nProject Generator  \nTLDR: Automatically re-execute algorithm problem source code / Automatically grade example input and output\n\n## Key Features\n- Automatic validation of example test cases\n- Track changes in source code files and automatically re-execute (nodemon)\n- Automatically re-execute the process when the custom test case input file (src/input.txt) is modified\n- JavaScript and TypeScript syntax + style checking and automatic formatting (prettier, eslint)\n  \n## Supported Languages:\n- C++\n- C#\n- C\n- Python\n- Java\n- Kotlin\n- JavaScript (partially unsupported - real-time test case testing unavailable)\n- TypeScript (partially unsupported - real-time test case testing unavailable)\n\n## Installation Instructions\n1. Install npm. Installation link: [Nodejs](https://nodejs.org/en)\n2. In the terminal, navigate to the desired path for the project folder and enter the following command:  \n`npm create algorithm@latest`\n3. Open the generated project folder `algorithm` with your preferred IDE.\n\n# Usage Instructions\n## Commands\nThese commands automatically execute the code and test cases upon modification.  \nFrom the algorithm project folder, select and enter the command for your language:\n- `npm run cpp`\n- `npm run cs`\n- `npm run c`\n- `npm run py`\n- `npm run java`\n- `npm run kotlin`\n- `npm run js`\n- `npm run ts`\n\nIf you are a C++ user and do not have the GCC compiler installed, please install it from [MSYS2](https://www.msys2.org/).\n \n## Source Code\nEnter your code in the source code file for your preferred language at the following paths.\n_Ensure to enter the appropriate command for the language you are using to enable automatic re-execution._\n- C++: `src/cpp/main.cpp`\n- C#: `src/cs/Program.cs`\n- C: `src/c/main.c`\n- Python: `src/py/main.py`\n- Java: `src/java/Main.java`\n- Kotlin: `src/kt/Main.kt`\n- Javascript: `src/js/main.js`\n- Typescript: `src/ts/main.ts`\n\n## Enable automatic re-grading feature\nTo enable the automatic re-grading feature, you must enter  \n`// baekjoon problem_number` at the very top of the source code. Please see the preview.  \n\nCurrently, only [boj](https://www.acmicpc.net/) is supported for this feature. Other platforms are not supported at this time. The following identifiers are treated the same:\n- [boj](https://www.acmicpc.net/): (boj | baekjoon | 벡준 | acmicpc)\n\n## Custom Test Case\nYou can also add custom test case for each run! Enter your input in `src/input.txt` file. The process will automatically restart upon modification.\n\n# License\nThis project is licensed under the MIT License.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeheecheon%2Fcreate-algorithm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjeheecheon%2Fcreate-algorithm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeheecheon%2Fcreate-algorithm/lists"}