Skip to content

Commit cb4e793

Browse files
committed
Initial commit
0 parents  commit cb4e793

11 files changed

+13944
-0
lines changed

.gitignore

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
.DS_Store
2+
3+
# Lock files
4+
yarn.lock
5+
6+
# Logs
7+
logs
8+
*.log
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
13+
# Runtime data
14+
pids
15+
*.pid
16+
*.seed
17+
*.pid.lock
18+
19+
# Directory for instrumented libs generated by jscoverage/JSCover
20+
lib-cov
21+
22+
# Coverage directory used by tools like istanbul
23+
coverage
24+
25+
# nyc test coverage
26+
.nyc_output
27+
28+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
29+
.grunt
30+
31+
# Bower dependency directory (https://bower.io/)
32+
bower_components
33+
34+
# node-waf configuration
35+
.lock-wscript
36+
37+
# Compiled binary addons (https://nodejs.org/api/addons.html)
38+
build/Release
39+
40+
# Dependency directories
41+
node_modules/
42+
jspm_packages/
43+
44+
# TypeScript v1 declaration files
45+
typings/
46+
47+
# Optional npm cache directory
48+
.npm
49+
50+
# Optional eslint cache
51+
.eslintcache
52+
53+
# Optional REPL history
54+
.node_repl_history
55+
56+
# Output of 'npm pack'
57+
*.tgz
58+
59+
#env
60+
.env
61+
62+
# Yarn Integrity file
63+
.yarn-integrity
64+
65+
# next.js build output
66+
.next

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

README.md

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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

jest.config.js

Whitespace-only changes.

js-exercises/.babelrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"targets": {
7+
"browsers": "last 2 Chrome versions"
8+
}
9+
}
10+
]
11+
]
12+
}

js-exercises/.eslintrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": "airbnb",
3+
"env": {
4+
"jest": true
5+
},
6+
"rules": {
7+
"no-restricted-syntax": 0,
8+
"arrow-parens": 0,
9+
"import/prefer-default-export": 0
10+
}
11+
}

js-exercises/jest.config.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
verbose: true,
3+
transform: {
4+
'^.+\\.(js|ts)$': 'babel-jest',
5+
},
6+
testEnvironment: 'node',
7+
};

0 commit comments

Comments
 (0)