
Security News
Static vs. Runtime Reachability: Insights from Latio’s On the Record Podcast
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
nestjs-temporal
Advanced tools
A progressive Node.js framework for building efficient and scalable server-side applications.
import { Module } from '@nestjs/common';
import { TemporalModule } from 'nestjs-temporal';
@Module({
imports: [
TemporalModule.registerWorker({
workerOptions: {
taskQueue: 'default',
workflowsPath: require.resolve('./temporal/workflow'),
},
}),
TemporalModule.registerClient(),
],
})
export class AppModule {
}
import { Injectable } from '@nestjs/common';
import { Activities, Activity } from 'nestjs-temporal';
@Injectable()
@Activities()
export class GreetingActivity {
constructor() {}
@Activity()
async greeting(name: string): Promise<string> {
return 'Hello ' + name;
}
}
export interface IGreetingActivity {
greeting(name: string): Promise<string>;
}
import { proxyActivities } from '@temporalio/workflow';
// Only import the activity types
import { IGreetingActivity } from '../activities';
const { greeting } = proxyActivities<IGreetingActivity>({
startToCloseTimeout: '1 minute',
});
export async function example(name: string): Promise<string> {
return await greeting(name);
}
import { Controller, Post } from '@nestjs/common';
import { Connection, WorkflowClient } from '@temporalio/client';
import { InjectTemporalClient } from 'nestjs-temporal';
@Controller()
export class AppController {
constructor(
@InjectTemporalClient() private readonly temporalClient: WorkflowClient,
) {}
@Post()
async greeting() {
const handle = await this.temporalClient.start('example', {
args: ['Temporal'],
taskQueue: 'default',
workflowId: 'wf-id-' + Math.floor(Math.random() * 1000),
});
console.log(`Started workflow ${handle.workflowId}`);
}
}
import { Module } from '@nestjs/common';
import { ConfigModule, ConfigService } from '@nestjs/config';
import { TemporalModule } from 'nestjs-temporal';
import { bundleWorkflowCode, NativeConnection, Runtime } from '@temporalio/worker';
import * as path from 'path';
@Module({
imports: [
TemporalModule.registerWorkerAsync({
imports: [ConfigModule],
inject: [ConfigService],
useFactory: async (config: ConfigService) => {
Runtime.install({});
const temporalHost = config.get('app.temporalHost');
const connection = await NativeConnection.connect({
address: temporalHost,
});
const workflowBundle = await bundleWorkflowCode({
workflowsPath: path.join(__dirname, './workflows'),
});
return {
workerOptions: {
connection,
taskQueue: 'default',
workflowBundle,
}
};
},
}),
ClientModule,
],
})
export class AppModule {}
import { Module } from '@nestjs/common';
import { ConfigModule, ConfigService } from '@nestjs/config';
import { TemporalModule } from 'nestjs-temporal';
import { Connection } from '@temporalio/client';
@Module({
imports: [
TempModule.registerClientAsync({
imports: [ConfigModule],
inject: [ConfigService],
useFactory: async (config: ConfigService) => {
const temporalHost = config.get('app.temporalHost');
const connection = await Connection.connect({
address: temporalHost,
});
return {
connection,
};
},
}),
],
})
export class ClientModule {}
Multiple workers can be registered by making multiple calls to TemporalModule.registerWorker
or
TemporalModule.registerWorkerAsync
.
You must explicitly specify your activity classes when registering multiple workers; otherwise, the workers may
register all activities marked by @Activity()
. You may find it more convenient to import dynamic worker module into
the module that actually contains the workflow and activities rather than your root AppModule
.
// Register the client once at the app level
import { Module } from '@nestjs/common';
import { TemporalModule } from 'nestjs-temporal';
@Module({
imports: [
TemporalModule.registerClient(),
],
})
export class AppModule {
}
// Configure Worker #1
@Module({
imports: [
TemporalModule.registerWorker({
workerOptions: {
taskQueue: 'worker-1',
workflowsPath: require.resolve('./temporal/workflow-1'),
},
activityClasses: [Greeting1Activity],
}),
],
providers: [Greeting1Activity],
})
export class Worker1Module {
}
// Configure Worker #2
@Module({
imports: [
TemporalModule.registerWorker({
workerOptions: {
taskQueue: 'worker-2',
workflowsPath: require.resolve('./temporal/workflow-2'),
},
activityClasses: [SomeOtherActivity],
}),
],
providers: [SomeOtherActivity],
})
export class Worker2Module {
}
Nest is MIT licensed.
FAQs
temporal for nestjs framework
The npm package nestjs-temporal receives a total of 5,418 weekly downloads. As such, nestjs-temporal popularity was classified as popular.
We found that nestjs-temporal 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
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.