
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
@salus-js/nestjs
Advanced tools
A library for mounting Salus operations at NestJS controllers. Retains full compatibility with the NestJS controller ecosystem.
A library for mounting Salus operations at NestJS controllers. Retains full compatibility with the NestJS controller ecosystem.
The @salus-js/nestjs is a simple drop-in to any NestJS application. Let's look at handling a simple operation.
import { t } from '@salus-js/codec'
import { http } from '@salus-js/http'
import { Operation, Input, InputOf, OutputOf, SalusModule } from '@salus-js/nestjs'
const getUser = http.get('/v1/users/:id', {
summary: 'Retrieve a user',
description: 'Fetches the user associated with the given ID',
params: t.object({
id: t.string.document({
description: 'Unique ID for the user to retrieve'
})
}),
response: t.object({
id: t.string.document({
description: 'Unique ID for the user'
}),
name: t.string.document({
description: 'Name for the user'
})
})
})
@Controller()
class UsersController {
@Operation(getUser)
public getUser(@Input() input: InputOf<typeof getUser>): OutputOf<typeof getUser> {
return {
id: input.params.id,
name: 'Hello World'
}
}
}
@Module({
imports: [
SalusModule.forRoot()
],
controllers: [
UsersController
]
})
class AppModule {
}
Under the hood, there's very little magic happening with @salus-js/nestjs. The @Operation() module simply looks at the provided Operation instance and registers the appropriate NestJS controller annotation (@Post()/@Get()/etc) for you. Similarly, @Input() is implemented using standard NestJS functionality available through createParamDecorator.
What this means is that Salus retains full compatibility with all standard NestJS controllers. For many use cases, this provides the best balance of type safety with ergonomics in the NestJS ecosystem.
When using the Salus NestJS module, you get access to an instance of OperationRegistry that can provide you access to all operations that have been mounted in the NestJS. You can inject OperationRegistry from @salus-js/nestjs in any module.
The NestJS module also supports automatically generating OpenAPI documents. You can enable this when importing the Salus module in your application:
@Module({
imports: [
SalusModule.forRoot({
openApi: {
path: '/openapi.yml',
options: {
info: {
version: '1.0',
title: 'My API
}
}
}
})
],
controllers: [
UsersController
]
})
class AppModule {
}
FAQs
A library for mounting Salus operations at NestJS controllers. Retains full compatibility with the NestJS controller ecosystem.
We found that @salus-js/nestjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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 breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.