UNPKG

@langgraph-js/bundler

Version:

Build tool for LangGraph.js applications that packages graph configurations into deployable modules

15 lines (14 loc) 437 B
#!/usr/bin/env node /** * LangGraph 开发服务器启动工具 * * 此工具会自动检测当前运行环境(Bun、Deno或Node.js), * 并启动相应的开发服务器配置。 * * - Bun: 使用 bun run --watch dev-node.js * - Deno: 使用 deno serve -A --unstable-sloppy-imports --env-file --port 8123 --watch dev-edge.js * - Node.js: 使用 node --watch dev-node.js * * 使用方法: npx langgraph-dev */ export {};