Skip to content

Commit 66d49e8

Browse files
author
vitaly.basaraba
committed
Featured: link urls
1 parent 23e42d2 commit 66d49e8

File tree

3 files changed

+2
-23
lines changed

3 files changed

+2
-23
lines changed

README.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,6 @@ Welcome to the **Interview Questions CLI**, a powerful tool designed for users l
1313
- `array` or `json` for use in your projects or further study.
1414
- **Randomized Selection**: Practice with random questions to simulate real-world scenarios.
1515

16-
## Installation
17-
18-
Ensure you have [Node.js](https://nodejs.org/) installed on your machine.
19-
20-
1. Clone the repository:
21-
```bash
22-
git clone https://github.com/fix2015/interview-questions.git
23-
```
24-
2. Navigate to the project directory:
25-
```bash
26-
cd interview-questions-cli
27-
```
28-
3. Install dependencies:
29-
```bash
30-
npm install
31-
```
32-
4. Make the CLI globally accessible (optional):
33-
```bash
34-
npm link
35-
```
36-
3716
## Usage
3817

3918
Run the CLI using the following command:

cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const displayQuestions = (result, format) => {
3232
result.forEach(({ title, url }) => {
3333
console.log('');
3434
logHeader(`Question: ${title}`);
35-
console.info(`Answer: ${url}`);
35+
console.info(`Answer: \x1b]8;;${url}\x1b\\${url}\x1b]8;;\x1b\\`);
3636
logDivider();
3737
});
3838
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "interview-questions",
3-
"version": "1.0.3",
3+
"version": "1.1.1",
44
"main": "index.js",
55
"scripts": {
66
"test": "npx jest ./test/InterviewQuestion.test.js"

0 commit comments

Comments
 (0)