Use jq and grep to Find Unused Dependencies in a Project

Cameron Nokes
InstructorCameron Nokes
Share this video with your friends

Social Share Links

Send Tweet
Published 5 years ago
Updated 5 years ago

In this lesson, we'll apply our jq skills and write a script that gets a list of dependencies from package.json and greps for usages of every package. If a package is unused, it's marked for removal.

Instructor: [00:00] In my directory here, you can see I have a package.json already. I just cat that out. You can see I have two dependencies here. I just have one JavaScript file, this index.js. This is just a "hello world" for an Express app. There's no Lodash in here, but there is Express. I'm hoping that our script here will see that Lodash is unused and will mark it for removal.

[00:26] Let's see how we do that. First, let's figure out what's our JQ query going to look like. We're going to want to get the dependencies objects from package.json. It's going to look like this. We can pass JQ a file as the second parameter. We see that returns that object.

[00:47] We want to get this object as an array of these keys. Let's see how we do that. In our JQ selector, we're going to pipe the dependencies object to the keys function. JQ has a number of built-in functions. One of them is keys. It has this kind of piping syntax, just like Bash. This allows you to chain queries together.

[01:13] Next, what we're going to want to do is we're going to pipe that to our array value iterator. That's going to break it out into separate lines so that we could use it in a for loop. The last thing we're going to do is we're going to add the r flag. The r stands for raw.

[01:29] You can what it does is it drops the quotes from it, which just makes it easier to use in our scripts. Usually, in script, we don't need quotes around it, so it's awesome. This is just what we need. Let's copy this to use in our scripts.

[01:45] I'm going to open this directory in my code editor. I'll create a new file here. Here, I'm going to start with a for loop. I'm going to say for dep in, and then we're going to invoke our command in there. In here, I'm going to do a grep. I'm going to say if we can't find a dependency, then mark it for removal. I'm going to do require, and then pass my dep here.

[02:09] I'm doing wild cards around the dependency name just because it could have single quotes or double quotes. We want to capture all of those. Then we're going to do recursive and quiet. I'm going to exclude known modules, and then have it search in the current directory. Then we'll say you can probably remove a dependency.

[02:32] As a side note, the way that this conditional syntax works, if this grep doesn't find any matches, it will return an exit status of one. If it does find matches, it will return an exit status of zero. Basically, what this is saying is if this grep returns unsuccessful -- and that's why we had the exclamation point to negate it -- then this if statement is true, and we enter in the if statement.

[02:57] If that's true, we know that we couldn't find any usages of this dependency, so we can probably remove it. Let's try this out. We'll give it execute permissions. Then let's run it. Cool, we see that works. I did not use Lodash, and it's saying I can remove it.

egghead
egghead
~ 2 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today