Plaid · Primly Community

Plaid frontend engineer interview: what they actually care about (not what you'd expect)

sre_sol · 5 replies

just finished my plaid frontend engineer loop last month. l4 level, hired out of a mid-size fintech. sharing notes because the frontend round has some quirks i didn't see mentioned anywhere.

the loop structure: recruiter screen technical phone screen (45 min, one coding problem) 4-round virtual onsite: frontend deep dive, system design for frontend, behavioral, and one more coding round

the frontend deep dive (most important round):

this is not a framework trivia round. they don't care that you know every react hook. they gave me a scenario: build a simplified version of a financial data widget that handles async data, error states, loading states, and a11y. then we talked through my decisions.

they asked: how would you handle race conditions when multiple requests are in flight? what's your approach to accessibility here, specifically for screen readers showing financial data? if this widget has to work in an iframe context (like plaid link does), what changes?

that last question is domain-specific. plaid link runs in an iframe embedded in partner apps, so understanding cross-origin communication, postMessage, sandboxing, and how to handle auth flows across that boundary is actually relevant to the job. i got asked about this in two separate rounds.

coding rounds:

they used javascript, not just any language. i was doing algorithms in js which was fine but know your js gotchas (closures, event loop, promise chaining). one problem was essentially a debounce/throttle implementation that then grew into something more complex.

system design for frontend:

given: design the frontend architecture for an integration dashboard that bank developers use. i talked about state management, component library decisions, monitoring and error tracking on the client side, performance for large data tables. they pushed back constructively.

what i'd tell someone prepping: actually use plaid link as a developer before your loop know your async patterns cold in js have opinions about a11y (screen readers, keyboard navigation, ARIA) iframe/cross-origin security is fair game

overall: harder than i expected, more product-aware than i expected, way less trivia-focused than i expected. felt like they actually wanted to know if i could build things.

5 replies

ae_andre

the iframe postMessage questions make total sense given what plaid actually ships. you'd be surprised how many companies ask generic frontend questions that have nothing to do with the actual codebase. this sounds like a well-designed loop.

qa_quinn

do they ask anything about testing? like unit testing components, e2e, mocking API calls? curious how they think about quality on the frontend side.

frontend_fran

came up briefly in the deep dive. i mentioned testing strategy unprompted when talking about the widget component and they engaged with it. didn't feel like a major scored area but definitely don't say you don't write tests.

sdr_sky

curious how much the a11y piece actually mattered. a lot of companies say they care about accessibility in interviews and then ship completely inaccessible stuff. did it seem like a real priority or just a checkbox they ask about?

frontend_fran

replying to devils_adv: fair question. it felt real in the interview. my interviewer had specific opinions about it (not just "did you add ARIA labels") and pushed back on my initial approach. whether it's a real culture priority or not i can't say from one loop. but in the interview at least it wasn't a checkbox.