View on GitHub

reading-notes

Readings: Event Driven Applications

Reading

Event Driven Programming

What native Node.js module allows us to get started with Event Driven Programming?

EventEmitter is module used for Event Driven Programming

What is the value of Object Oriented Programming used in tandem with Event Driven Programming?

Object Oriented programming is useful because of being able to inherent properties from the objects, as well as passing data between the objects.

Consider your knowledge of Event Driven Programming in the Web Browser, now explain to a non-technical friend how Event Driven Programming might be useful on the backend using Node.js.

Event Driven programming could be used to automate performing multiple tasks at once by storing a bunch of functions in a box, when its called the box is opened and all the functions are performed sequentially.

Looking ahead at this module’s course schedule, What do you look forward to learning?

I am looking forward to learning sockets!

What are your learning goals after reading and reviewing the class README?

I want to understand and learn all of the syntax for sockets and how I can interface with them.