Austin Coding Academy Blog #307

matt coston
1 min readNov 30, 2020
  1. Tell me about a project you’re particularly proud of. What did you do that worked out well? I was pretty proud of this quote website that I wrote in vanilla JS for TeamTreehouse a couple of years ago. It randomly picked an RGB color and changed to it while displaying a new quote very few seconds.
  2. How do you do testing, and what do you think about it? How would you improve QA? https://www.browserstack.com/guide/setup-qa-process
  3. What tools do you use to find a performance bug? You may use something like Autocannon that does pipeline testing.
  4. What is the preferred method of resolving unhandled exceptions in Node.js? Instead of using Try and Catch blocks you can use Process.on and catch errors that way.
  5. How does Node.js support multi-processor platforms, and does it fully utilize all processor resources? The default for Node is a single thread, but it can be expanded with worker processes to take advantage of other server cores.
  6. What is typically the first argument passed to a Node.js callback handler? The error object. You want to handle the error first before you proceed further.

--

--

matt coston
0 Followers

Hey there! I'm an IT manager by day, and I dabble in all things web development by night.