{"id":26377435,"url":"https://github.com/saseungmin/daily_coding_dojo","last_synced_at":"2025-03-17T03:27:18.730Z","repository":{"id":42583761,"uuid":"259555258","full_name":"saseungmin/daily_coding_dojo","owner":"saseungmin","description":"study for javacript algorism 🎯 daily coding..🚀","archived":false,"fork":false,"pushed_at":"2024-08-29T12:44:17.000Z","size":2247,"stargazers_count":2,"open_issues_count":21,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-29T14:12:00.158Z","etag":null,"topics":["algorithm","algorithm-study","coding-dojo","daily-coding","javascript"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/saseungmin.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}},"created_at":"2020-04-28T06:48:40.000Z","updated_at":"2024-08-29T12:44:21.000Z","dependencies_parsed_at":"2024-08-29T14:10:41.808Z","dependency_job_id":"1bf0fce9-e558-4c8a-991e-10b339a0ce57","html_url":"https://github.com/saseungmin/daily_coding_dojo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saseungmin%2Fdaily_coding_dojo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saseungmin%2Fdaily_coding_dojo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saseungmin%2Fdaily_coding_dojo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saseungmin%2Fdaily_coding_dojo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saseungmin","download_url":"https://codeload.github.com/saseungmin/daily_coding_dojo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243967288,"owners_count":20376211,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","algorithm-study","coding-dojo","daily-coding","javascript"],"created_at":"2025-03-17T03:27:18.183Z","updated_at":"2025-03-17T03:27:18.725Z","avatar_url":"https://github.com/saseungmin.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## 🐤 Daily Coding Dojo\n\n- 매일 코딩 도장\n- 현실적이게 꾸준히를 목표로 한다.\n\n### 🦄 진행 방법\n\n- 테스트를 적용한다. (jest..)\n- 문제 혹은 링크 첨부한다.\n- 해당 문제를 TDD 사이클에 맞춰 문제를 푼다.\n- 문제를 푼 해당 폴더의 `README.md` 파일에 어떤 방식으로 풀었는지 풀이 방법을 적는다.\n- 푼 문제에 대한 회고 적는다.\n\n### 📚 JavaScript 폴더 별 설정 with Jest\n\n#### 📌 npm install\n\n```shell\n\u003e npm init -y\n\u003e npm i jest @types/jest eslint jest-plugin-context\n\u003e npx eslint --init\n```\n\n#### 📌 .eslintrc.js with airbnb\n\n```js\nmodule.exports = {\n  env: {\n    browser: true,\n    es2021: true,\n    jest: true,\n  },\n  extends: [\n    'airbnb-base',\n  ],\n  globals: {\n    context: 'readonly',\n  },\n  parserOptions: {\n    ecmaVersion: 12,\n    sourceType: 'module',\n  },\n  rules: {\n  },\n};\n```\n\n#### 📌 jest.config.js\n\n```js\nmodule.exports = {\n  setupFilesAfterEnv: [\n    'jest-plugin-context/setup',\n  ],\n  coverageThreshold: {\n    global: {\n      branches: 100,\n      functions: 100,\n      lines: 100,\n      statements: 100,\n    },\n  },\n};\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaseungmin%2Fdaily_coding_dojo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaseungmin%2Fdaily_coding_dojo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaseungmin%2Fdaily_coding_dojo/lists"}