Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Plugin to add frecency to search results. Original blog post on Frecency by Slack:
https://slack.engineering/a-faster-smarter-quick-switcher-77cbc193cb60
Install the npm module:
npm install frecency
Import Frecency into your code and create an instance of Frecency.
import Frecency from 'frecency';
export const peopleFrecency = new Frecency({
key: 'people' // Frecency data will be saved in localStorage with the key: 'frecency_people'.
});
When you select a search result in your code, update frecency:
onSelect: (searchQuery, selectedResult) => {
...
peopleFrecency.save({
searchQuery,
selectedId: selectedResult._id
});
...
}
Before you display search results to your users, sort the results using frecency:
onSearch: (searchQuery) => {
...
// Search results received from a search API.
const searchResults = [{
_id: '57b409d4feea972a68ba1101',
name: 'Brad Vogel',
email: 'brad@mixmax.com'
}, {
_id: '57a09ceb7abdf9cb2c35818c',
name: 'Brad Neuberg',
email: 'neuberg@gmail.com'
}, {
...
}];
return peopleFrecency.sort({
searchQuery,
results: searchResults
});
}
Frecency will sort on the _id
attribute by default. You can change this by setting an
idAttribute
in the constructor:
const frecency = new Frecency({
key: 'people',
idAttribute: 'id'
});
// OR
const frecency = new Frecency({
key: 'people',
idAttribute: 'email'
});
// Then when saving frecency, make sure to save the correct attribute as the selectedId.
frecency.save({
searchQuery,
selectedId: selectedResult.email
});
// `idAttribute` also accepts a function if your search results contain a
// mix of different types.
const frecency = new Frecency({
key: 'people',
idAttribute: (result) => result.id || result.email
});
// Depending on the result, save the appropriate ID in frecency.
frecency.save({
searchQuery,
selectedId: selectedResult.id
});
// OR
frecency.save({
searchQuery,
selectedId: selectedResult.email
});
Frecency saves timestamps of your recent selections to calculate a score and rank you results. More timestamps means more granular frecency scores, but frecency data will take up more space in localStorage.
You can modify the number of timestamps saved with an option in the constructor.
new Frecency({
key: 'people',
timeStampsLimit: 20 // Limit is 10 by default.
});
Frecency stores a maximum number of IDs in localStorage. More IDs means more results can be sorted with frecency, but frecency data takes up more space in localStorage.
To change the maximum number of different IDs stored in frecency:
new Frecency({
key: 'people',
recentSelectionsLimit: 200 // Limit is 100 by default.
});
1.0.5 (2020-08-12)
1.3.1 fallback on other score computation when an entry is too old #11
1.3.0 make weights configurable #12
1.2.0 Add keepScores to SortParams [backward compatible] #10
1.1.0 Add support for custom storage providers i.e. Node (#8 - @hugomano)
1.0.4 Improve readme and install instructions.
1.0.3 Add license.
1.0.2 Fix unit tests.
1.0.1 Allow sorting even if search query is empty.
1.0.0 Initial release.
FAQs
Frecency sorting for search results.
The npm package frecency receives a total of 68 weekly downloads. As such, frecency popularity was classified as not popular.
We found that frecency demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 18 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.