
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@umoja/filterable
Advanced tools
Filters wrap around each other and then finally around the implementation. While the first added filter is called with the input first, and last in receiving the result.
Inspired by li3 filtering system.
Features:
import { all as filterableAll } from '@umoja/filterable'
// or const filterableAll = require('@umoja/filterable').all
const API = filterableAll({
create (name, id) {
return {id, text: `${name} ${id}`}
}
})
export { ...API }
// or module.exports = { ...API }
import { create as createFilterable } from '@umoja/filterable'
// or const createFilterable = require('@umoja/filterable').create
import * as API from './API'
class Post {
public static create = createFilterable(function (filtered_id) {
return API.create('Post', filtered_id)
})
}
export { Post }
// or module.exports = { Post }
import * as API from './API'
import { Post } from './Post'
API.create.applyFilter((next, name, id) => {
console.log(`API before create: ${name} ${id}`)
const result = next(name, id);
console.log(`API after create: ${name} ${id}`)
return result
});
Post.create.applyFilter((next, id) => {
console.log(`Post before create: ${id}`)
const result = next(id);
console.log(`Post after create: ${id}`)
return result
});
Post.create(1)
// log: Post before create: 1
// log: API before create: Post 1
// log: API after create: Post 1
// log: Post after create: 1
// => {id: 1, text: `Post 1`}
FAQs
make function filterable
We found that @umoja/filterable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.