Skip to content

Commit

Permalink
Featured: link urls
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly.basaraba committed Dec 14, 2024
1 parent 23e42d2 commit 66d49e8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 23 deletions.
21 changes: 0 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,6 @@ Welcome to the **Interview Questions CLI**, a powerful tool designed for users l
- `array` or `json` for use in your projects or further study.
- **Randomized Selection**: Practice with random questions to simulate real-world scenarios.

## Installation

Ensure you have [Node.js](https://nodejs.org/) installed on your machine.

1. Clone the repository:
```bash
git clone https://github.com/fix2015/interview-questions.git
```
2. Navigate to the project directory:
```bash
cd interview-questions-cli
```
3. Install dependencies:
```bash
npm install
```
4. Make the CLI globally accessible (optional):
```bash
npm link
```

## Usage

Run the CLI using the following command:
Expand Down
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const displayQuestions = (result, format) => {
result.forEach(({ title, url }) => {
console.log('');
logHeader(`Question: ${title}`);
console.info(`Answer: ${url}`);
console.info(`Answer: \x1b]8;;${url}\x1b\\${url}\x1b]8;;\x1b\\`);
logDivider();
});
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "interview-questions",
"version": "1.0.3",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"test": "npx jest ./test/InterviewQuestion.test.js"
Expand Down

0 comments on commit 66d49e8

Please sign in to comment.