
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.
loopback-deep-filter
Advanced tools
Alan Mamani (creator) - alanfernando93.am@gmail.com - https://gitlab.com/alanfernando93
Huáscar Miranda Martínez (collaborator) - huascarm@gmail.com - https://github.com/huascarmm
Install using npm;
$ npm install loopback-deep-filter
Install using yarn;
$ yarn add loopback-deep-filter
Configure and load LoopbackFilterComponent in the application constructor as shown below.
import { DeepCrudRepository } from "@monkey-space/loopback-component-filter";
replace DefaultCrudRepository to DeepCrudRepository in folder repositories
export class TrackingRoomRepository extends DeepCrudRepository<
TrackingRoom,
typeof TrackingRoom.prototype.id,
TrackingRoomRelations
> {
// Only the Find property is affected by the base repository DeepCrudRepository
...
body example to filter format
{
"where": {
"payments": "undefined", // Returns all entities if `payments` is different to undefined (it is required)
"payments.name": "example",
"payments.description": "valueToEqual"
},
"include": ["payments"]
// Order, Fields, Limit remains the configuration
}
more examples, folder _/src/tests/integration_
FAQs
loopback-component-filter update
We found that loopback-deep-filter 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.