Location
United States
Job Type
full-time
Work Format
🌍 Remote
Salary
$155,000 - $195,000 per year
Posted
July 29, 2026

Job Description

Senior Software Engineer, FullstackUnited StatesWhat We Do At GoGuardian, we’re helping build a future where all learners are ready and inspired to solve the world’s greatest challenges. Our award-winning system of learning solutions is purpose-built for K-12 and trusted by school leaders to promote effective teaching and equitable engagement while helping empower educators to keep students safe.  What It’s Like to Work at GoGuardian

We are an outcomes-focused learning company with a steadfast focus on improving learning environments, one classroom at a time. Working with us means joining a remote team of diverse, committed, mission-driven employees who are inspired by our vision, dedicated to our customers, and ready to roll up their sleeves. Guardians put their heads together to solve problems, learn together from experiments that fail, and stand together by their work with full accountability. We balance our diligence with an inclusive culture that invites everyone to bring their whole self to work. Join us and learn why “I love the people here” is one of the most frequent comments we hear from Guardians.

The Role

We're looking for a Senior Software Engineer, Fullstack to design and implement solid architectural solutions supporting our New Products Team. 

With your passion for quickly solving problems and ability to implement high-quality code while continuously collaborating with other amazing team members, you will be building features that support schools in managing and the safety of their buildings and hallways. You'll work across the full stack – from crafting intuitive and responsive React user interfaces to designing scalable Node/Go backend services that support hundreds of thousands of teachers and students. Our Engineering team is built on a purpose-driven culture of collaboration, openness, trust, and transparency with amazing individuals who push the limits and think outside the box every day.

What You'll Do

  • Design, build, and continually improve new products
  • Develop high-performance backend services in Node/Go that facilitate realtime campus movement workflows
  • Build intuitive, data-rich frontend experiences with React
  • Design and implement gRPC and REST APIs for real-time data access and service-to-service communication
  • Optimize SQL database schemas and queries for large-scale analytics workloads
  • Build and maintain background workers for data aggregation and processing using asynchronous patterns
  • Integrate with LLM/AI services for intelligent features like generative reporting and predictive scans
  • Write high-quality, maintainable code with strong typing, comprehensive tests, and clear documentation
  • Contribute to infrastructure-as-code using Terraform for AWS services
  • Mentor and coach developers, helping them improve and perfect their skills
  • Participate in architecture discussions, code reviews, and continuous improvement initiatives

Who You Are

  • 5+ years of professional industry experience leading and coordinating complex, large-scale features
  • Strong Node/Go experience with production-grade services, including concurrency patterns, gRPC, and microservices architecture
  • Accomplished in building high-quality React applications with TypeScript, including data visualization and dashboards
  • Experienced in designing and implementing APIs (gRPC, REST) and microservices that handle high throughput
  • Proficient with SQL databases (PostgreSQL preferred) including complex query optimization, indexing strategies, and analytics workloads
  • Familiar with caching strategies (Redis/Redis Cluster) and multi-tier caching architectures
  • Has working knowledge of cloud services (AWS preferred: ECS, Aurora, Athena, S3, SQS)
  • Has working knowledge of containerization (Docker) and orchestration platforms (ECS, Kubernetes)
  • Experience with modern React tooling and component libraries (Shadcn, React Router)
  • Proven experience delivering highly performant and scalable features
  • Proven advocate for engineering quality and building a thriving team culture
  • Great communication skills and an ability to proactively identify problems and solutions across teams and stakeholders
  • Eager to take initiative in a fast-paced, ever-changing, dynamic environment
  • Fueled by the opportunity to truly impact the education landscape

What We Offer

  • Competitive pay, complete health insurance, 401(k) matching, bonuses, and an employee stock option plan.
  • Flexible time off, 13 paid holidays, paid parental leave, wellness days, and a paid year-end holiday break.
  • A robust catalog of benefits that support your professional growth and personal wellbeing: learning funds, lifestyle funds, online yoga & meditation classes, fertility & adoption reimbursement, and more…

Plus the intangible:

  • A varied and challenging role in a global and highly innovative high-growth company.
  • Supportive, driven colleagues who have your back and share your passion.

The typical base salary range for this position is $155,000 - $195,000 per year. The range displayed on this job posting reflects the minimum and maximum target for new hire base pay for this position and your pay will be determined by a variety of factors, including your primary work location, skills, qualifications and experience. Additional benefits information is listed on our careers page.

Please share this with your friends or co-workers who may be interested in working at GoGuardian! We have multiple openings and are always looking for talented people. 

 GoGuardian is an equal opportunity employer and makes employment decisions on the basis of merit and business needs. GoGuardian does not discriminate against employees, applicants, interns or volunteers on the basis of race, religion, color, national origin, ancestry, physical disability, mental disability, medical condition, pregnancy, marital status, sex, age, sexual orientation, military and veteran status, registered domestic partner status, genetic information, gender, gender identity, gender expression, or any other characteristic protected by applicable law.

🎯 Who is this job for?

This role is suitable for a Senior full-stack software engineer with 5+ years of professional experience designing and leading complex, scalable features.

Required skills include strong Node.js or Go, React with TypeScript, gRPC and REST APIs, microservices, PostgreSQL and SQL optimization, Redis, AWS, Docker, Terraform, and high-performance distributed systems.

The candidate should be familiar with building real-time backend services, data-rich dashboards, asynchronous workers, AI integrations, analytics workloads, infrastructure, automated tests, architecture discussions, code reviews, mentoring, and cross-team collaboration.

💬 Potential Interview Questions

How would you design a scalable Node.js or Go service for real-time campus movement workflows?

I would separate ingestion, processing, and delivery concerns using stateless services, asynchronous queues, and well-defined APIs. I would use concurrency controls, idempotent event handling, horizontal scaling, and observability to support high throughput and reliable real-time updates.

When would you choose gRPC over REST for service-to-service communication?

gRPC is appropriate for internal services that need efficient, strongly typed, low-latency communication and streaming capabilities. REST is often preferable for public APIs, browser-facing integrations, and scenarios where broad interoperability and human-readable requests are important.

How would you optimize a slow PostgreSQL query used for analytics?

I would inspect the execution plan with EXPLAIN ANALYZE, verify index usage, and review joins, filtering, sorting, and aggregation costs. Depending on the workload, I might add or adjust indexes, partition large tables, rewrite the query, pre-aggregate data, or move heavy analytical processing to services such as Athena.

How would you design background workers for reliable asynchronous data processing?

I would use a durable queue such as SQS, make jobs idempotent, and implement visibility timeouts, retries with exponential backoff, and a dead-letter queue. Workers should expose metrics for throughput, latency, failures, and backlog so the system can be scaled and operated safely.

What caching strategy would you use with Redis for a high-traffic application?

I would cache stable or expensive-to-compute data with explicit TTLs and use cache-aside behavior where appropriate. I would define invalidation rules, protect against cache stampedes, monitor hit rates, and use Redis Cluster or multi-tier caching when capacity and availability requirements demand it.

How would you build a performant React and TypeScript dashboard containing large amounts of data?

I would use strongly typed data contracts, server-side pagination or aggregation, and query caching to avoid unnecessary requests. I would also apply memoization selectively, virtualize large lists, lazy-load routes and components, and use efficient visualization techniques to keep rendering responsive.

How would you ensure consistency between a React frontend and gRPC or REST backend APIs?

I would establish versioned contracts and generate or share TypeScript types where possible, while validating inputs and responses at runtime. Automated contract tests, backward-compatible changes, and clear error models help prevent frontend and backend drift.

How would you integrate an LLM feature such as generative reporting into a production application?

I would isolate the LLM integration behind a service that handles prompt construction, authorization, rate limits, retries, timeouts, and provider failures. I would validate and sanitize inputs, protect sensitive student data, evaluate output quality, and include human review or confidence indicators for consequential results.

How would you deploy and manage AWS infrastructure for these services using Terraform?

I would create reusable Terraform modules for networking, ECS or Kubernetes workloads, databases, queues, storage, and IAM, with remote state locking and environment-specific configuration. Changes should be reviewed through CI, plan outputs, policy checks, and controlled deployments with least-privilege access.

How would you diagnose a production performance regression across a full-stack system?

I would use correlated logs, metrics, traces, and deployment history to identify whether the issue is in the browser, API, database, queue, or infrastructure. I would reproduce the bottleneck with representative load, mitigate customer impact first, then implement and verify a permanent fix with regression tests and monitoring.

📋 Job Summary

GoGuardian is a mission-driven education technology company creating safer, more effective learning environments for K–12 schools. As a Senior Software Engineer, Fullstack, you’ll build scalable products across the stack, developing React and TypeScript interfaces alongside Node/Go services, gRPC and REST APIs, SQL analytics, asynchronous workers, AI integrations, and AWS infrastructure with Terraform. This is a fully remote role on a collaborative, global team, offering a base salary of $155,000–$195,000 per year plus comprehensive benefits, equity, bonuses, and generous time off. Apply to make a meaningful impact on education while solving challenging technical problems and mentoring talented engineers.

Required Skills

React TypeScript Node.js Go gRPC PostgreSQL Redis AWS

Never miss a JavaScript opportunity

Subscribe to get similar jobs and weekly insights delivered to your inbox

Hiring JavaScript developers?

Post your job to 7,300+ registered developers. Starting free.

See Pricing

Related jobs

Ireland, Dublin

Software Engineer - Frontend Development

Sony Interactive Entertainment

Full-time

Is this your listing? Claim or request removal