|
| 1 | +# Instructions |
| 2 | + |
| 3 | + |
| 4 | +Please read through the instructions carefully. |
| 5 | + |
| 6 | +## Requirements |
| 7 | +- Please ensure that you have these or later version of `node` and `npm`. |
| 8 | + - `node` >= `12.11.0` |
| 9 | + - `npm` >= `6.11.3` |
| 10 | +- If you are using Unix-based system |
| 11 | + - use latest version of `bash` or `zsh` terminals. |
| 12 | +- If you are windows |
| 13 | + - use [`Git bash`](https://gitforwindows.org/). |
| 14 | + - **The VSCode internal terminal may not work properly. So use Git Bash where ever possible.** |
| 15 | +- It is recommended that you use `nvm` to manage node versions. |
| 16 | +- We recommend that you use [VSCode](https://code.visualstudio.com/) with these extensions installed/enabled. |
| 17 | + - [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) |
| 18 | + |
| 19 | +## Steps |
| 20 | + |
| 21 | +1. Clone **your** version of the repo on your local system |
| 22 | +2. `cd` into the folder where the repo was cloned and run `npm install`. |
| 23 | +3. Then, `cd` into `js-exercises` and run `npm install` for this sub-folder. |
| 24 | +4. For each new day, follow the following steps -- |
| 25 | + 1. Create a new branch. |
| 26 | + - For example, if the topic is **Expressing Programs**, the branch can be `solutions-expressing-programs` |
| 27 | + 2. Use the commands mentioned below download the questions |
| 28 | + 3. **Read the README file for instructions.** |
| 29 | + 4. Solve the question |
| 30 | + 5. Commit the files |
| 31 | + 6. Push the branch to **your** repo |
| 32 | + 7. Create a pull request on your repo from the above branch to master. |
| 33 | + - **DO NOT MERGE THE PR** |
| 34 | + |
| 35 | + |
| 36 | +## Adding `.env` file |
| 37 | +If you are getting the warning of _Too Many Requests_ from GitHub, then |
| 38 | +you can add an `.env` file in the root directory with your GITHUB api key. |
| 39 | +You can refer to this [link](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line) to generate your own token. |
| 40 | + |
| 41 | +Here's an example of an `.env` file: |
| 42 | +``` |
| 43 | +GITHUB_API_KEY=here_goes_your_api_key |
| 44 | +``` |
| 45 | +_(Make sure to not commit your `.env`);_ |
| 46 | + |
| 47 | +**You do NOT need to check any checkbox in "Select Scopes" section.** The token is just used to extend the rate limit for downloading files from Github. |
| 48 | + |
| 49 | +## Docs |
| 50 | + |
| 51 | +### Fetching a question (npx pesto download -e <question-name>) |
| 52 | +This command lets you fetch a question. Here is an example usage. If you want to fetch a question, you can use `npx pesto download -e <question-name>` and type your question. Here's an example fetching questions `cache-function` and `flip-args` |
| 53 | + |
| 54 | +```shell |
| 55 | +$ npx pesto download -e cache-function |
| 56 | + |
| 57 | +Fetching files of cache-function |
| 58 | +Downloaded file README.md at js-exercises/cache-function |
| 59 | +Downloaded file cacheFunction.js at js-exercises/cache-function |
| 60 | +Downloaded file cacheFunction.test.js at js-exercises/cache-function |
| 61 | +Completed. Fetched README.md,cacheFunction.js,cacheFunction.test.js of cache-function |
| 62 | + |
| 63 | +$ npx pesto download -e flip-args |
| 64 | + |
| 65 | +Fetching files of flip-args |
| 66 | +Downloaded file README.md at js-exercises/flip-args |
| 67 | +Downloaded file flipArgs.js at js-exercises/flip-args |
| 68 | +Downloaded file flipArgs.test.js at js-exercises/flip-args |
| 69 | +Completed. Fetched README.md,flipArgs.js,flipArgs.test.js of flip-args |
| 70 | +``` |
| 71 | + |
| 72 | +An **alias** of the above command is also available. You can fetch a file like this as well -- |
| 73 | +```shell |
| 74 | +$ npm run download <question-name> |
| 75 | +``` |
| 76 | + |
| 77 | +## Restrictions |
| 78 | +- Don't modify `.babelrc`, `.eslintrc`, `jest.config.json`. |
| 79 | + - If you need to disable any eslint rule, use inline comments. Refer to this [link](https://eslint.org/docs/2.13.1/user-guide/configuring#disabling-rules-with-inline-comments) for more info. |
| 80 | +- Don't download any extra dependency for solving any question. You can only use internal node modules. |
| 81 | +- A solution will not be considered complete until an implementation and a test file are both provided. |
| 82 | + - For example — if the question is to code `add` function, then `add.js` should contain the implementation and `add.test.js` should contain the test cases. |
| 83 | + - For some questions, test cases are provided. **For questions where test cases are missing, you need to add them.** |
| 84 | + - Write tests for all the questions using [Jest](https://jestjs.io/) |
| 85 | +- For daily exercises the pull request should be created before 8 PM (IST) the next day. |
| 86 | +- For long exercises the pull request should be created before 8 PM (IST) on Monday. |
| 87 | +- Your homework will not be counted as complete if the pull request is not created within the above time frame. |
| 88 | + |
| 89 | +## Note |
| 90 | + |
| 91 | +- **One** question per Pull Request |
| 92 | +- Each Pull Request should have code only related to that question |
| 93 | +- If you have changes related to `babel` etc. please create a separate PR for that and merge it |
0 commit comments