Skip to content
technologies / node.js

Node.js services, including the one under our own platform.

APIs and background work in the same language as the front end, which means one team, one toolchain and shared code between browser and server.

why node

What we build on Node.

The Atlantis API runs on Node in production. This isn't a stack we read about.

One language

Front and back share code

Validation rules and types written once and used on both sides, so they can't drift apart.

Concurrency

Good at waiting

Node handles many simultaneous connections cheaply, which suits APIs, webhooks and real-time updates.

Ecosystem

A package for most things

Chosen carefully. We keep dependencies few and current, because every one is a future security update.

Operations

Containers and clean restarts

Services start fast and recover cleanly, which is what makes zero-downtime deploys realistic.

01

What we build with Node.js

APIs behind a site or an app

The interface your storefront, mobile app or partner integrates against. Authentication, rate limits, versioning and documentation handled rather than assumed.

Real-time features

Live order status, notifications, presence, anything where the server pushes rather than waits to be asked. Node is genuinely good at holding many idle connections at once.

The Fromcode Atlantis Framework itself

Our own platform's API runs on Node in production, serving every site we host. This isn't a stack we read about.

Integrations and background work

Talking to payment providers, couriers and accounting systems on a schedule, with retries and a record of what happened.

Replacing a slow PHP or Rails endpoint

One route at a time, next to what exists, rather than a rewrite. Usually the ones doing many small outbound calls.

the essentials

What Node.js actually is.

Written for someone deciding, not for someone who already knows. Skip it if you do.

What Node.js is

JavaScript running on a server rather than in a browser. It exists because a single language on both sides removes a whole category of duplication: the same validation, the same types, the same people.

What it's genuinely good at

Waiting. A Node server handles thousands of connections that are mostly idle — waiting on a database, an API, a file — without a thread for each. That's why it suits APIs, real-time features and anything that spends its life calling other services.

What it's bad at

Long calculations. Node runs your code on one thread, so a heavy computation blocks every other request behind it. Image processing, big reports and data crunching belong in a worker or another language, and we design that boundary rather than discover it under load.

The dependency question

Node projects pull in a lot of third-party code, and that's the honest risk. We keep the list short, pin versions, scan for known vulnerabilities in the pipeline, and treat every dependency as something we would have to maintain ourselves if it were abandoned.

Security

You're on Node 18 or older

Out of support, so no security patches. Upgrading is usually a day and occasionally reveals one library that needs replacing.

Stability

The API falls over under load

Often one blocking operation on the main thread. It's findable with a profile rather than guessable, and it's usually a small fix.

Cost

Dependencies nobody can account for

A package list that grew without review is both a security surface and a maintenance bill. An audit is a day's work and pays for itself.

questions

Straight answers.

Is Node.js suitable for serious back ends?

Yes, when the work is coordinating requests, APIs and I/O, which is most business software. For heavy numerical computation we would point you elsewhere.

What database do you pair it with?

PostgreSQL by default, which is what our platform runs on in production. We work with what you already have when there's a good reason to keep it.

How do you handle long-running jobs?

A queue and worker processes, separate from the web process, so a slow report never blocks a customer request.

Node or PHP for a new back end?

PHP if it's a content site or a shop and you want the largest pool of maintainers. Node if it's an API, has real-time parts, or shares code with a JavaScript front end. Both are correct answers to different questions.

Can Node handle our traffic?

Almost certainly, and the limit is rarely the language. It's usually one slow database query or a blocking operation, both of which we would find before recommending anything bigger.

Tell us what you want to build or improve.

A few lines are enough to start. You get a reply within two working days.

Discuss your project