-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
42 lines (36 loc) · 1.17 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env node
import cliSpinners from 'cli-spinners';
import ora from 'ora';
import {
getParsedExercises,
handleExerciseQuestionnaire,
} from './src/index.js';
const README_URL_sudheerj =
'https://raw.githubusercontent.com/sudheerj/javascript-interview-questions/master/README.md';
const README_URL_lydiahallie =
'https://raw.githubusercontent.com/lydiahallie/javascript-questions/master/README.md';
const run = async () => {
const spinner = ora({
text: 'Fetching README.md',
spinner: cliSpinners.dots,
});
spinner.start();
const exercises = await getParsedExercises(README_URL_sudheerj);
spinner.stop();
let currentExerciseIndex = 0;
let shouldContinue = await handleExerciseQuestionnaire(
exercises[currentExerciseIndex]
);
while (shouldContinue) {
currentExerciseIndex++;
if (currentExerciseIndex === exercises.length) {
console.log('Great Job! You finished all the exercies!');
break;
}
shouldContinue = await handleExerciseQuestionnaire(
exercises[currentExerciseIndex]
);
}
console.log('See you next time!');
};
run();