Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@apricote/nest-pg-boss
Advanced tools
@apricote/nest-pg-boss
npm install @apricote/nest-pg-boss
To begin using @apricote/nest-pg-boss
, initialize the root module:
import { PGBossModule } from "@apricote/nest-pg-boss";
// app.module.ts
@Module({
imports: [
PGBossModule.forRootAsync({
application_name: "default",
useFactory: (config: ConfigService) => ({
// Connection details
host: config.get<string>("DB_HOST"),
user: config.get<string>("DB_USERNAME"),
password: config.get<string>("DB_PASSWORD"),
database: config.get<string>("DB_DATABASE"),
schema: "public",
max: config.get<number>("DB_POOL_MAX"),
}),
inject: [ConfigService],
}),
],
})
export class AppModule {}
For a list of available settings, check out the pg-boss docs.
// jobs.ts
import { createJob } from "@apricote/nest-pg-boss"
const IFoobarJobData interface {
foo: string
bar: boolean
}
const FoobarJob = createJob<IFoobarJobData>("foobar")
// module.ts
import { PGBossModule } from "@apricote/nest-pg-boss";
import { FoobarService } from "./service.ts";
@Module({
imports: PGBossModule.forJobs([FoobarJob])
providers: [FoobarService]
})
class FoobarModule {}
// service.ts
import { JobService } from "@apricote/nest-pg-boss";
import { FoobarJob, IFoobarJobData } from "./jobs.ts";
@Injectable()
class FoobarService {
constructor(
@FoobarJob.Inject()
private readonly foobarJobService: JobService<IFoobarJobData>,
) {}
async sendJob() {
await this.foobarJobService.send({ foo: "oof", bar: true }, {});
}
}
Jobs can be processed by using the @FoobarJob.Handle()
decorator.
// service.ts
@Injectable()
class FoobarService {
/* ... */
@FoobarJob.Handle()
async handleJob(job: Job<FoobarJobData>) {
// do something
}
}
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
@apricote/nest-pg-boss
is MIT licensed.
FAQs
Use pg-boss in your NestJS app
The npm package @apricote/nest-pg-boss receives a total of 1,077 weekly downloads. As such, @apricote/nest-pg-boss popularity was classified as popular.
We found that @apricote/nest-pg-boss 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.