@microsoft/agents-hosting-express
v1.5.3
Published
Microsoft 365 Agents SDK for JavaScript
Downloads
52,412
Keywords
Readme
microsoft/agents-hosting-express
Overview
Provides integration to host the agent in Express using startServer
Usage
import { AgentApplication, TurnState } from '@microsoft/agents-hosting';
import { startServer } from '@microsoft/agents-hosting-express';
const app = new AgentApplication<TurnState>();
app.onMessage('hello', async (context, state) => {
await context.sendActivity('Hello, world!');
});
startServer(app);