diff --git a/zk/events.md b/zk/events.md index cd7076d..dba2c0e 100644 --- a/zk/events.md +++ b/zk/events.md @@ -1,4 +1,6 @@ --- +id: events +aliases: [] tags: - backend - node-js @@ -15,12 +17,10 @@ Another way of putting this is to say that all events in Node inherit from the event. At bottom everything in Node is an event with a callback, created via event emitters. -Because Node's runtime is -[event-driven](Event_loop.md), it is -event-emitter cycles that are being processed by the Event Loop, although you -may know them as `fs` or `http` (etc) events. The call stack that the Event Loop -works through is just a series of event emissions and their associated -callbacks. +Because Node's runtime is [event-driven](Event_loop.md), it is event-emitter +cycles that are being processed by the Event Loop, although you may know them as +`fs` or `http` (etc) events. The call stack that the Event Loop works through is +just a series of event emissions and their associated callbacks. ## Event Emitters