From f1a4d8d38bd295197344496956077681d0867d38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=9A=B7=E1=9B=81=E1=9B=9F=E1=9A=B1=E1=9A=B7=E1=9B=81=20?= =?UTF-8?q?=E1=9B=92=E1=9A=A8=E1=9B=9A=E1=9A=A8=E1=9A=B2=E1=9A=BB=E1=9A=A8?= =?UTF-8?q?=E1=9B=9E=E1=9B=89=E1=9B=96?= Date: Tue, 6 Feb 2024 14:49:08 +0400 Subject: [PATCH] Update 114-cli-apps.md rm redundant "take" --- src/data/roadmaps/full-stack/content/114-cli-apps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/full-stack/content/114-cli-apps.md b/src/data/roadmaps/full-stack/content/114-cli-apps.md index c1da7ceeb..ee4fbdb0a 100644 --- a/src/data/roadmaps/full-stack/content/114-cli-apps.md +++ b/src/data/roadmaps/full-stack/content/114-cli-apps.md @@ -14,6 +14,6 @@ You should be able to build a CLI application that can: Here are some ideas for CLI applications you can build: - Create a CLI application that takes a URL and a CSS selector arguments and prints the text content of the element that matches the selector. **Hint** you can use [cheerio](https://github.com/cheeriojs/cheerio) -- An application that takes optionally takes two dates and prints the most starred GitHub projects in that date range. **Hint** you can use [GitHub's search API](https://developer.github.com/v3/search/#search-repositories) +- An application that optionally takes two dates and prints the most starred GitHub projects in that date range. **Hint** you can use [GitHub's search API](https://developer.github.com/v3/search/#search-repositories) - Bulk rename files in a directory. **Hint** you can use [fs](https://nodejs.org/api/fs.html) and [path](https://nodejs.org/api/path.html) - Write a CLI application that takes a path as input and compresses all the images in that directory. It should accept an option for output path; if the output path is not given it should compress images in place otherwise write the compressed images to the output path. **Hint** you can use [sharp](https://github.com/lovell/sharp).