Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@prisma-utils/nestjs-request-parser
Advanced tools
This package allows for automatically parsing query parameters and map them to a `prisma` compatible format to be automatically appended to `FindMany` calls.
This package allows for automatically parsing query parameters and map them to a prisma
compatible format to be automatically appended to FindMany
calls.
First, you need to add the decorator to a method in your controller.
@Controller()
export class UserController {
constructor(private readonly userService: UserService) {}
@Get()
getAll(@RequestParser() requestParams: ParsedQueryModel) {
console.log(requestParams);
return this.userService.getAll(requestParams);
}
}
Then call the route as follows:
example.com/api/users?sort=-id,name&limit=20&page=5
will return 20 entries from the 5th page (i.e., entry 81 - 100). Entries are ordered by id (descending) and name (ascending).
name | description | default |
---|---|---|
sort | order by attribute. Comma separated list of attributes. - in front of a attribute (i.e., -id ) means order by attribute descending . | id |
limit | limit the result to a specific number of entries. Provides the possibility to set a maximum value as well | 20 |
page | describe the page that should be retrieved (use in combination with limit ) | 1 |
{
"limitParamName": "limit",
"limitDefaultValue": 20,
"maxLimit": 100,
"pageParamName": "page",
"pageDefaultValue": 1,
"orderParamName": "sort",
"orderDefaultValue": "id"
}
The default configuration can be overwritten when using the Decorator
. For example, a custom sort order can be defined via
@Controller()
export class UserController {
constructor(private readonly userService: UserService) {}
@Get()
getAll(
@RequestParser({ orderDefaultValue: '-createdAt,name' })
requestParams: ParsedQueryModel,
) {
return this.userService.getAll(requestParams);
}
}
This library was generated with Nx.
Run nx build request-parser
to build the library.
Run nx test request-parser
to execute the unit tests via Jest.
FAQs
This package allows for automatically parsing query parameters and map them to a `prisma` compatible format to be automatically appended to `FindMany` calls.
We found that @prisma-utils/nestjs-request-parser 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.