Microsoft Community Hub
techcommunity.microsoft.com › microsoft community hub › communities › topics › education sector › educator developer blog
An Absolute Beginner's Guide to LangGraph.js
August 7, 2024 - The official documentation is the best resource for understanding LangGraph.js. For a more production-grade example, check out Building ToolLLM With LangGraph.js!
GitHub
github.com › langchain-ai › langgraphjs
GitHub - langchain-ai/langgraphjs: Framework to build resilient language agents as graphs. · GitHub
To learn more about how to use LangGraph, check out the docs. We show a simple example below of how to create a ReAct agent.
Starred by 2.9K users
Forked by 475 users
Languages TypeScript 98.0% | Svelte 0.8% | JavaScript 0.8% | Python 0.2% | CSS 0.2% | Shell 0.0%
Videos
01:40:42
Building ToolLLM With LangGraph.js - YouTube
31:22
Build a JavaScript AI Agent With LangGraph.js and MongoDB - YouTube
01:51:06
🔴 Build an Autonomous AI Agent with Javascript and LangGraph ...
06:33
How to Build an Agent with Auth and Payments - LangGraph.js - YouTube
47:41
Build AI Agents with Langgraph, Langchain and Langsmith ...
Human in the Loop in LangGraph.js
Medium
medium.com › @mustafaskyer › langgraph-js-build-your-first-ai-workflow-188fdc7fb1e4
Langgraph JS | Build your first AI Workflow | by Mustafa Elsayed | Medium
February 8, 2025 - download Langgraph Studio from here and follow the steps below to start! Make sure you’ve installed docker and is running on your machine ... Select NodeJS as the project version, and set the path of the graph to ./src/simple/graph.ts:graph don’t forget the :graphwhich is the named export from the graph.ts file · start the project, and run your flow from the submit button ... In the next article, I’ll demonstrate a real example workflow such as a TripPlanner using the same techniques that are explained here but with real agents and tools, stay tuned!
GitHub
github.com › bracesproul › awesome-langgraphjs
GitHub - bracesproul/awesome-langgraphjs: 🦜🕸️ A list of open-source LangGraph.js examples, projects, applications and YouTube videos.
🦜🕸️ A list of open-source LangGraph.js examples, projects, applications and YouTube videos. - bracesproul/awesome-langgraphjs
Starred by 378 users
Forked by 42 users
GitHub
github.com › langchain-ai › langgraphjs-studio-starter
GitHub - langchain-ai/langgraphjs-studio-starter: Example LangGraph.js project made to run in LangGraph Studio · GitHub
February 26, 2026 - This is a sample project that will help you get started with developing LangGraph.js projects in LangGraph Studio and deploying them to LangGraph Cloud. It contains a simple example graph exported from src/agent.ts that implements a basic ReAct pattern where the model can use tools for more information before responding to a user query.
Starred by 67 users
Forked by 25 users
Languages TypeScript
GitHub
github.com › bracesproul › langgraphjs-examples
GitHub - bracesproul/langgraphjs-examples: Repository containing LangGraph.js🦜🕸️ examples
Intro - Introduction to LangGraph.js, Studio, and Cloud. Human in the Loop - Introduction to Human in the Loop (HITL) concepts. Stockbroker - A full stack stockbroker & financial analyst app, with HITL for purchasing stocks. Streaming Messages (Examples, Frontend) - Next.js web app connected to a LangGraph Cloud deployment to show off different message streaming types.
Starred by 178 users
Forked by 59 users
Languages TypeScript 96.8% | CSS 2.8% | JavaScript 0.4%
GitHub
github.com › langchain-ai › langgraph
GitHub - langchain-ai/langgraph: Build resilient language agents as graphs. · GitHub
Starred by 30.9K users
Forked by 5.3K users
Languages Python
Langchain
docs.langchain.com › oss › javascript › langgraph › graph-api
Graph API overview - Docs by LangChain
If you are using subgraphs, you ... Command: import { Command } from "@langchain/langgraph"; graph.addNode("myNode", (state) => { return new Command({ update: { foo: "bar" }, goto: "otherSubgraph", // where `otherSubgraph` is a node in the parent graph graph: Command.PARENT, }); });...
MongoDB
mongodb.com › docs home › development › ai integrations › langgraph.js
Build an AI Agent with LangGraph.js and MongoDB Atlas - Atlas - MongoDB Docs
The request returns a response in JSON format. You can also view the plaintext output in your terminal where the server is running. VIEW OUTPUT · You can continue the conversation by using the thread ID returned in your previous response. For example, to ask a follow-up question, use the following command. Replace <threadId> with the thread ID returned in the previous response. VIEW OUTPUT · Back · LangGraph.js ·
Reddit
reddit.com › r/langchain › building langgraph agent using javascript
r/LangChain on Reddit: Building LangGraph agent using JavaScript
May 21, 2025 - You have to start with the official docs. There are not much reliable third party resources for TS/JS version of these popular frameworks. docs: https://langchain-ai.github.io/langgraphjs/tutorials/quickstart/
LangChain
langchain-ai.github.io › langgraphjs › reference › classes › langgraph.StateGraph.html
StateGraph | LangGraph.js API Reference
LangGraph.js API Reference · Back to documentation · Preparing search index... langgraph · StateGraph · A graph whose nodes communicate by reading and writing to a shared state.
Javascript-conference
javascript-conference.com › home › build an ai agent with javascript and langgraph
Build Smart AI Agents with JavaScript and LangGraph
November 24, 2025 - The LangChain library exists for both programming languages to implement AI applications in the form of chained modules. LangGraph, a library for modeling and implementing AI agents, comes from the same manufacturer. In this article, we use the JavaScript version of this library based on Node.js, which scores points with its lightweight architecture and asynchronous I/O.