From a723336db938f767fc2f0436450181083c043000 Mon Sep 17 00:00:00 2001 From: Connor Date: Fri, 22 Jul 2016 13:09:14 -0700 Subject: [PATCH] Updated broken URL for event.js --- Architecture-Overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Architecture-Overview.md b/Architecture-Overview.md index 5c415ec..2a0b86e 100644 --- a/Architecture-Overview.md +++ b/Architecture-Overview.md @@ -3,7 +3,7 @@ | [red / **red.js**](https://github.com/node-red/node-red/blob/master/red/red.js) | The main entry point for Node-RED. Provides the programmatic API into the runtime. | | [red / **ui.js**](https://github.com/node-red/node-red/blob/master/red/ui.js) | Creates the basic express app that serves the UI and related REST endpoints. | | [red / **server.js**](https://github.com/node-red/node-red/blob/master/red/server.js) | The heart of the runtime. Adds runtime API endpoints to the express app created by `ui.js`. Provides `start`/`stop` functions for the runtime. | -| [red / **events.js**](https://github.com/node-red/node-red/blob/master/red/events.js) | A singleton event-emitter for broadcasting events through-out the runtime. | +| [red / **events.js**](https://github.com/node-red/node-red/blob/master/red/runtime/events.js) | A singleton event-emitter for broadcasting events through-out the runtime. | | [red / **comms.js**](https://github.com/node-red/node-red/blob/master/red/comms.js) | Provides a WebSocket endpoint for real-time communication with the editor UI. | | [red / **library.js**](https://github.com/node-red/node-red/blob/master/red/library.js) | Provides Flow Library and generic node-type library (e.g. Functions, Templates) functionality. | | [red / **log.js**](https://github.com/node-red/node-red/blob/master/red/log.js) | Centralised log handling for the runtime and nodes. |