
Security News
Scaling Socket from Zero to 10,000+ Organizations
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.
@warp-works/warpjs-filter-box
Advanced tools
In webpack, add the following folder to the partial directories:
const FilterBox = require('@warp-works/warpjs-filter-box');
...
module: {
loaders: [
...,
{
test: /\.hbs$/,
loader: 'handlebars-loader',
query: {
...
partialDirs: {
...,
FilterBox.templatesDir,
}
}
}
]
}
In your template, you can now use:
<div class="warpjs-filter-box-container">
<div class="pull-right">
{{>warpjs-filter-box-template placeholder="Filter my items"}}
</div>
<table>
<tbody>
<tr class="warpjs-filter-box-item">
...
</tr>
</tbody>
</table>
</div>
The filter-box will apply the filtering to items with the class
warpjs-filter-box-item in the same warpjs-filter-box-container as the filter
box.
Those classes are exported for convenience with:
FilterBox.CONTAINER_CLASS
FilterBox.ITEM_CLASS
This simple implementation will call $(element).text() and compare
.val() in lower case.
In your client code, to enable the listeners, all you have to do is:
const FilterBox = require('@warp-works/warpjs-filter-box');
FilterBox.init($);
FAQs
Simple UI filter-box
We found that @warp-works/warpjs-filter-box demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Socket CEO Feross Aboukhadijeh shares lessons from scaling a developer security startup to 10,000+ organizations in this founder interview.

Research
Socket Threat Research maps a rare inside look at OtterCookie’s npm-Vercel-GitHub chain, adding 197 malicious packages and evidence of North Korean operators.

Research
Socket researchers identified a malicious Chrome extension that manipulates Raydium swaps to inject an undisclosed SOL transfer, quietly routing fees to an attacker wallet.