npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@reminix/langgraph

v0.0.18

Published

Reminix adapter for LangGraph - serve agents as REST APIs

Readme

@reminix/langgraph

Reminix Runtime adapter for LangGraph. Serve any LangGraph agent as a REST API.

Ready to go live? Deploy to Reminix Cloud for zero-config hosting, or self-host on your own infrastructure.

Installation

npm install @reminix/langgraph @langchain/langgraph

This will also install @reminix/runtime as a dependency.

Quick Start

import { createReactAgent } from '@langchain/langgraph/prebuilt';
import { ChatOpenAI } from '@langchain/openai';
import { serveAgent } from '@reminix/langgraph';

const llm = new ChatOpenAI({ model: 'gpt-4o' });
const graph = createReactAgent({ llm, tools: [] });
serveAgent(graph, { name: 'my-agent', port: 8080 });

For more flexibility (e.g., serving multiple agents), use wrapAgent and serve separately:

import { createReactAgent } from '@langchain/langgraph/prebuilt';
import { ChatOpenAI } from '@langchain/openai';
import { wrapAgent } from '@reminix/langgraph';
import { serve } from '@reminix/runtime';

const llm = new ChatOpenAI({ model: 'gpt-4o' });
const graph = createReactAgent({ llm, tools: [] });
const agent = wrapAgent(graph, 'my-agent');
serve({ agents: [agent], port: 8080 });

Your agent is now available at:

  • POST /agents/my-agent/invoke - Execute the agent

API Reference

serveAgent(graph, options)

Wrap a LangGraph graph and serve it immediately. Combines wrapAgent and serve for single-agent setups.

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | graph | CompiledGraph | required | A LangGraph compiled graph | | options.name | string | "langgraph-agent" | Name for the agent (used in URL path) | | options.port | number | 8080 | Port to serve on | | options.hostname | string | "0.0.0.0" | Hostname to bind to |

wrapAgent(graph, name)

Wrap a LangGraph compiled graph for use with Reminix Runtime. Use this with serve from @reminix/runtime for multi-agent setups.

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | graph | CompiledGraph | required | A LangGraph compiled graph | | name | string | "langgraph-agent" | Name for the agent (used in URL path) |

Returns: LangGraphAgentAdapter - A Reminix adapter instance

How It Works

LangGraph uses a state-based approach. The adapter:

  1. Converts incoming messages to LangChain message format
  2. Invokes the graph with { messages: [...] }
  3. Extracts the last AI message from the response
  4. Returns it in the Reminix response format

Endpoint Input/Output Formats

POST /agents/{name}/invoke

Execute the graph. Input keys are passed directly to the graph.

Request:

{
  "messages": [
    {"role": "user", "content": "Hello!"}
  ]
}

Response:

{
  "output": "Hello! How can I help you today?"
}

Streaming

For streaming responses, set stream: true in the request:

{
  "messages": [{"role": "user", "content": "Hello!"}],
  "stream": true
}

The response will be sent as Server-Sent Events (SSE).

Runtime Documentation

For information about the server, endpoints, request/response formats, and more, see the @reminix/runtime package.

Deployment

Ready to go live?

Links

License

Apache-2.0