1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

link fix for ui.js

Thor Berggren 2018-10-20 09:45:19 -07:00
parent 6447009d1b
commit fb005403e9

@ -1,7 +1,7 @@
| File | Description |
|:-----|:------------|
| [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/tree/master/red/runtime/nodes) | Creates the basic express app that serves the UI and related REST endpoints. |
| [red / **ui.js**](https://github.com/node-red/node-red/blob/master/red/api/editor/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/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/api/editor/comms.js) | Provides a WebSocket endpoint for real-time communication with the editor UI. |