{"id":18605269,"url":"https://github.com/kottans/nodejs-2019-homeworks","last_synced_at":"2025-08-01T08:41:44.624Z","repository":{"id":35501537,"uuid":"204275522","full_name":"kottans/nodejs-2019-homeworks","owner":"kottans","description":null,"archived":false,"fork":false,"pushed_at":"2023-07-11T01:26:14.000Z","size":306,"stargazers_count":4,"open_issues_count":24,"forks_count":14,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-25T03:51:13.273Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/kottans.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}},"created_at":"2019-08-25T09:52:18.000Z","updated_at":"2022-05-29T07:49:00.000Z","dependencies_parsed_at":"2022-06-28T17:23:25.273Z","dependency_job_id":null,"html_url":"https://github.com/kottans/nodejs-2019-homeworks","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/kottans%2Fnodejs-2019-homeworks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kottans%2Fnodejs-2019-homeworks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kottans%2Fnodejs-2019-homeworks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kottans%2Fnodejs-2019-homeworks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kottans","download_url":"https://codeload.github.com/kottans/nodejs-2019-homeworks/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248290019,"owners_count":21078923,"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":[],"created_at":"2024-11-07T02:20:35.258Z","updated_at":"2025-04-10T20:30:58.347Z","avatar_url":"https://github.com/kottans.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![MIT Licensed][icon-mit]][license]\n[![Kottans-Backend][icon-kottans-be]][kottans-backend]\n[![Telegram][icon-chat]][chat]\n\n#  NodeJS 2019 course homeworks\nThis repo was created for students to submit their homeworks for review. \n\nInstall and use [yarn](https://yarnpkg.com/en/docs/install)\ninstead of `npm`.\n\n### How to submit\n- fork this repository\n- clone your fork to your local machine: `git clone https://github.com/YOUR_USERNAME/nodejs-2019-homeworks.git`\n- add this repository as an upstream: `git remote add upstream https://github.com/kottans/nodejs-2019-homeworks.git`\n- for every new task you're gonna submit, in your local repository:\n  - `git checkout master \u0026\u0026 git pull upstream master \u0026\u0026 git push origin` to update your fork from the base repo\n  - `git checkout master` and then create new branch, name it according to task performed (aka feature branch): `git checkout -b port-sniffer`. In this example feature branch is named `port-sniffer`.\n    Make sure you never commit into `master` directly or you may face code conflicts.\n  - add a folder with your github name under  `submissions` (if you haven't yet)\n  - under your name folder, add a folder with task name and put your code in the folder\n\n  See example file structure you are expected to have below:\n\n  ![File structure example](img/file-structure.png)\n- make sure your code conforms to [code quality rules](CODE_QUALITY.md)\n- if your project has dependencies (i.e. its own `package.json`)\n  then complete the following in order to pass CI checks:\n  - put all required files in your project directory only\n  - in the root `package.json` add a build integration script\n    (right before `postinstall` script) following the template:\n    `\"install:\u003cyour-github-name\u003e/\u003cyour-project-name\u003e\": \"cd ./path/to/your/project \u0026\u0026 yarn\"`\n- make pull-request to this repository following these steps:\n  - checkout the relevant feature branch: `git checkout port-sniffer` (in this example feature branch is called `port-sniffer`)\n  - commit your changes if any to the feature branch\n  - checkout `master` branch: `git checkout master`\n  - pull latest changes from upstream `master` branch: `git pull upstream master`\n  - rebase your feature branch onto `master`: `git checkout port-sniffer \u0026\u0026 git rebase master`\n  - resolve merge conflicts if there are any\n  - push feature branch to your remote repository: `git push --set-upstream origin port-sniffer`\n  - make pull-request from your repository to this repository via GitHub web-interface\n- post a link to your subtask PR in the\n     [BE Questionarium chat](https://t.me/joinchat/DqrdixM_mjurcmQkkQ11Og)\n     and ask mentors for a code review\n     * wait for review from course mentors\n     * if necessary, make changes, until your code will be approved and merged\n     * once the code review phase successfully finished\n     and you have an approval from one of the mentors\n     add to your `kottans-backend/README.md`\n     a link to subtask code base and\n     a note saying `Reviewed and approved by @\u003cmentor\u003e`\n     (use mentor's github username)\n     * list your reflections on this subtask\n       (_what was new to you_, _what surprised you_, _what you intend to use in future_)\n- when any changes are required (whether it si your own decision or requested by a mentor)\n  * checkout your feature branch before any code base updates: `git checkout \u003cfeature-branch-name\u003e`\n  * once committed the changes and ready to update your pull request just `git push origin`;\n    GitHub will track your new commits and update the pull request\n     \n[icon-mit]: https://img.shields.io/badge/license-MIT-blue.svg\n[license]: https://github.com/OleksiyRudenko/a-tiny-JS-world/blob/master/LICENSE.md\n[icon-chat]: https://img.shields.io/badge/chat-on%20telegram-blue.svg\n\n[icon-kottans-be]: https://img.shields.io/badge/%3D(%5E.%5E)%3D-backend-yellow.svg\n[kottans-backend]: https://github.com/kottans/backend\n[chat]: https://t.me/joinchat/Dqrdixe1c2K9bXUFBzNWtg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkottans%2Fnodejs-2019-homeworks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkottans%2Fnodejs-2019-homeworks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkottans%2Fnodejs-2019-homeworks/lists"}