🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

agentic-express

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agentic-express

A library to accelerate REST agent app development on top of Express, enabling users to focus on Langgraph agent development.

0.0.5
latest
Source
npm
Version published
Weekly downloads
3
-78.57%
Maintainers
1
Weekly downloads
 
Created
Source

Agentic Express 🚀

Agentic Express is a TypeScript-based npm package designed to accelerate REST agent application development on top of Express.js. By providing prebuilt utilities, middleware, and patterns, it allows developers to focus on building Langgraph agents without worrying about the underlying REST infrastructure.

☄️ Features

  • Express.js Simplified: Prebuilt middleware and utilities to streamline REST API development.
  • Langgraph Agent Focus: Designed to complement Langgraph agent development by handling REST concerns.
  • TypeScript Support: Fully typed for safer and more predictable development.
  • Scalable Patterns: Encourages best practices for building scalable and maintainable applications.

⚒️ Installation

Install the package via npm or yarn:

pnpm add agentic-express
# or
npm install agentic-express
# or
yarn add agentic-express

👀 Usage

Here's how you can use Agentic Express to build a REST agent app:

import express from 'express';
import { AgenticExpress } from 'agentic-express';

const app = express();

// Set up the app with Agentic Express middleware
const agenticExpress = new AgenticExpress({
  graphStream: invokeGraph,
});

// Add the middleware to the express app
router.use(await agenticExpress.setup());

// Start the server
app.listen(3000, () => {
  console.log('Agentic Express server is running on http://localhost:3000');
});

🤝 Contribution

We welcome contributions! Please see the CONTRIBUTING.md file for detailed guidelines on how to contribute.

📜 License

This project is licensed under the MIT License. See the LICENSE file for details.

Created with ❤️ by Sohab Sk

Keywords

agent

FAQs

Package last updated on 15 Mar 2025

Did you know?

Socket

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.

Install

Related posts