Create Node.js CLI's that Intelligently Adapt to Usage with Frecency

Shawn Wang
InstructorShawn Wang
Share this video with your friends

Social Share Links

Send Tweet
Published 4 years ago
Updated 3 years ago

In stateful interfaces, there's a tradeoff between recency and frequency, two seemingly similarly aligned goals for guessing user intent. Recency biases towards newer entries being more likely to be what you are looking to do. Frequency biases towards betting on you doing the same thing you've always done. Fortunately there is an established algorithm that trades off frequency and recency, and chances are you've already used it in Slack or other similar interfaces!

Instructor: [0:00] One of the design considerations to think about when designing stateful CLIs is the tradeoff between frequency and recency. Let's illustrate with an example. I have here the project that I've been working on. At the top level, I have a packages folder. Inside of it, I have a mycli folder.

[0:24] I've been going back and forth between this all day. It's pretty natural that I will want to go back and forth between that and packages-mycli. Maybe I want to head out as well and maybe go to the example folder. We have that in there as well, or I'll just back out again.

[0:51] There is a CLI that I use and love called z. This just tracks the folders that you've visited and helps you jump straight there. I don't have to type the full file path. I can just type the folder name. It just jumps me right to that file path.

[1:06] I can jump right back. That jumps me to the correct folder. I can jump to the example folder. All of it works. I don't even have to spell out the entire thing. I can just type partial matching. It also works as advertised.

[1:30] The problem comes when I have a new folder. Let's say I'll just call this mycli2. I go into that. I have an extended history of going back and forth between my root directory and mycli folder, I've most recently gone into mycli2.

[1:54] What happens when I type, "z mycli"? What should happen? Should I go to the most recent entry, which maybe is the current thing that I'm working on so I want it to guess the most recent, or should I go to the most frequent entry, which more often than not I'm probably going, independent of anything else going on?

[2:19] In this case, it actually goes to the most frequent directory because the most recent directory is still new. The amount of times I've visited the most frequent directory hasn't outweighed there.

[2:32] You can see how there might have to be an algorithm to trade off frequency and recency, especially if you're guessing from a single input. You only have a history of inputs. You don't have any other context to work with. That's frequently what we're dealing with in a lot of our inputs and our suggestions.

[2:53] The frecency algorithm was invented by Mozilla and implemented by rupa/z as well. That's the CLI that I was using. Probably the most famous implementation of it is going to be in the Slack search box.

[3:10] Imagine there are give people called Matt in your company. All of them are sorted by alphabetical order by default. You don't talk to some of these Matts. You only want to talk to your best buddy Matt Hodgkins, who's all the way down there.

[3:26] Sorting by frequency makes sense in that you're always talking to this guy. You probably should have him up top so it's easier to select. If there's a new Matt that came along and suddenly was your buddy and you'd have to be paired with him, you probably want that to rise up faster even though maybe you've been speaking to Matt Hodgkins for the past 20 years.

[3:48] There's some nuance to that tradeoff. Fortunately, this has been formalized mathematically as frecency. There is a npm library that implements this algorithm. The only thing to be aware of is that this library was designed to work in the browser. It uses the local storage API.

[4:05] In order to save files in Node, you're going to have to use an adapter that implements local storage API, like node-localstorage. Then you have the same behavior as well. Essentially, this frecency algorithm, once you wrap it inside of a local storage provider like node-localstorage, it acts exactly like conf.

[4:28] You save whenever some successful selection has been selected. Then you get, or in this case you're sorting a list of results based on whatever partial entry of a search query that the users input. This gives you the frecency ranked list of selections.

egghead
egghead
~ 7 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