mrkeyoor.com_
Sun 13 Sept 21:49 UTC
Self-Hostedevaluationupdated 13 Sept 2026

parse-server review

Parse Server is an open-source backend you can run on infrastructure that supports Node.js. It supplies common application services, including data storage, authentication-related controls, files, live queries, Cloud Code, and GraphQL, so teams do not have to build every backend primitive themselves.

trackingstars / 7d
Verdict

Our build completed in 7 seconds, but the full test command exceeded the 900-second cap. Parse Server is a credible choice for teams that value Parse SDK compatibility, self-hosting, and a mature set of backend features, provided they can own the database and security work. New projects without that compatibility requirement should compare simpler or more opinionated platforms before accepting a 1,252-package install and the audit backlog we observed.

We ran it

Install✓ · 54s1252 packages · 508 MB
Build✓ · 7s
Tests✗ timed out · 900sran, no count parsed
Known vulns743 critical · 39 high · 28 moderate · 4 low (npm audit)
Repo483 files~171,967 lines of source · 8.3 MB · 7 CI workflows · Dockerfile · tests dir

Answers from our run

Does parse-server build from source?

Dependencies installed in 54 seconds (1252 packages), and the build succeeded in 7 seconds. We cloned commit 6d92204 into a clean Debian container with 3 CPUs and no project-specific setup.

Do parse-server's tests pass?

We could not finish them: the suite was still running after 15 minutes in our container.

Does parse-server have known vulnerabilities in its dependencies?

npm audit flagged 74 known advisories in the dependency tree, including 3 critical at the time of our run.

Who should not use parse-server?

Teams seeking a fully managed backend with no database or server operations

What are the alternatives to parse-server?

Supabase, Appwrite, PocketBase. Our build completed in 7 seconds, but the full test command exceeded the 900-second cap.

Setup3/5Install and build worked; full tests exceeded 900 seconds
Docs4/5Guide, API reference, wiki, and Cloud Code docs are linked
Community5/521,412 stars and same-day release and push activity
Maturity4/5Long-lived project with LTS policy and broad backend scope

Who it’s for

Teams maintaining apps built with Parse SDKs
Developers who want a self-hosted application backend on MongoDB or PostgreSQL
Organizations that need to place backend data and operations on their own infrastructure
Existing Express teams that want to add Parse services to a larger Node.js application

Who it’s NOT for

Teams seeking a fully managed backend with no database or server operations
Small projects that need a tiny dependency footprint, our install occupied 508 MB
Buyers who require a quick, deterministic full test pass before adoption
Teams unwilling to investigate dependency advisories, our npm audit reported 74 known vulnerabilities

Setup reality

In our run, npm installation succeeded in 54 seconds with 1,252 packages and used 508 MB on disk; the build then succeeded in 7 seconds, but the tests did not finish before the 900-second limit. The final log lines showed successful database index-creation checks rather than a specific error, so we cannot assign a cause from this evidence. The README makes the first local launch sound straightforward, especially with MongoDB, but production adoption still means choosing and operating a database, reviewing configuration and access controls, checking the audit findings, and running the full suite in an environment where it can complete.

A self-hosted successor to a once-hosted backend

Parse Server is a general application backend for teams that want the Parse programming model without handing the whole system to a hosted vendor. It runs on Node.js, works with Express, and can either become part of an existing web application or run as its own service.

This is not a small convenience library. The repository contains 483 files and roughly 171,967 lines of source in the snapshot we tested, and the README covers configuration, access scopes, route allow lists, account policies, file adapters, logging, multi-tenancy, Live Query, GraphQL, and Cloud Code. In practical terms, adopting it means selecting an application backend with a large security and operations surface, not merely adding a few endpoints.

The feature set replaces a meaningful amount of backend work

The strongest reason to choose Parse Server is breadth paired with deployment control. The documentation describes object storage and queries, SDK connections, email verification, password resets, account policy, localized pages, custom routes, idempotency enforcement, installation records, and health reporting. Teams can also expose generated GraphQL operations, run Cloud Code, and use Live Query for realtime behavior. Those are substantial building blocks for mobile or web products that would otherwise need several services.

Compatibility is explicit rather than vague. The README names Node.js 20, 22, and 24, MongoDB 7 and 8, and PostgreSQL 16 through 18. It also links a getting-started guide, API reference, Cloud Code guide, wiki, and development guide. Separate release and alpha branches make the project's delivery model legible, while long-term support targets the previous major line to give operators a transition window. The warning that some LTS vulnerabilities may remain for community fixes is unusually candid and should influence upgrade planning.

What happened when we ran it

We cloned commit 6d92204 into a fresh, unprivileged Debian container with 3 CPUs, 8 GB of RAM, Node.js 22, and no secrets. Installation succeeded in 54 seconds. npm installed 1,252 packages, and the resulting dependency tree occupied 508 MB. The build also succeeded, taking 7 seconds. That is a clean install and compile result, although the package count and disk footprint are significant for a backend framework.

The test command did not complete before our 900-second cap. Its final visible lines showed successful checks around optional user indexes. The log did not show a specific failure, so it would be irresponsible to blame a database, missing system package, or broken test. The defensible conclusion is narrower: on our box, the full suite was not a quick validation step and requires more investigation or more time.

Our npm audit also reported 74 known vulnerabilities: 3 critical, 39 high, 28 moderate, and 4 low. An audit count does not prove that every advisory is exploitable in a deployed Parse Server, but those results demand triage before production. The repository does provide 7 CI workflow files, a Dockerfile, and a dedicated tests directory, all useful signs that maintainers treat repeatability seriously. Still, passing the build is not a substitute for resolving runtime exposure and completing relevant tests.

The rough edges are operational, not cosmetic

The README's fastest path begins with running MongoDB and Parse Server locally, but a real deployment has more decisions. For version 8.6.91, operators must configure database credentials, public routes, client keys, files, account recovery, logs, health checks, and any custom Cloud Code. They also need backups, database upgrades, monitoring, capacity planning, and an incident path.

Project scale adds maintenance cost. A 508 MB installation and 1,252 packages create more supply-chain review than a compact service, while a test run longer than 15 minutes makes tight feedback loops harder on modest CI workers. The README's extensive table of contents is helpful, but it also signals how many switches can affect security or behavior. Teams should start with route allow lists and access scopes, then explicitly document which clients, keys, adapters, and administrative paths are permitted.

Activity is excellent, while the issue queue needs sorting

The project has 21,412 GitHub stars and dates back to January 2016, which indicates both reach and longevity. More importantly for current health, version 8.6.91 was released on September 13, 2026, and the repository received a push later that same day. That same-day release and push show an active current release cadence, which is stronger evidence than stars alone.

There are 560 open issues. That number is not automatically a verdict against a project this old and widely used, but it means prospective adopters should search for unresolved reports involving their chosen database, adapters, SDKs, and upgrade path. Same-day code and release activity make abandonment an unreasonable reading of the evidence. The more realistic concern is prioritization: a large queue can contain documentation questions, feature requests, and production defects, and each team must identify which ones intersect its architecture.

It belongs behind your application boundary

In a real stack, Parse Server belongs behind a TLS-terminating proxy or gateway, connected to MongoDB 7 or 8 or PostgreSQL 16 to 18, and surrounded by monitoring, backups, secret management, and deployment automation. Client apps use Parse SDKs, while Cloud Code and custom Express routes handle application-specific policy. File storage and email behavior should be selected deliberately through adapters, not left as last-minute defaults. Health endpoints can feed readiness checks, and Live Query needs its own capacity and connection planning.

Choose Parse Server when Parse compatibility or its combined data, identity, realtime, and Cloud Code model removes meaningful custom work. Do not choose it merely because the local quick start looks easy. Our run proved that installation and compilation can be straightforward, but it also exposed a long validation cycle and 74 audit findings that require ownership. For a team prepared to operate a substantial Node.js backend, it is a serious platform; for a tiny project seeking one executable and minimal upkeep, it is more machinery than necessary.

Alternatives

ProjectWhat it isPick it when
Supabase gh↗A PostgreSQL-centered backend platform with database, authentication, storage, and realtime services.pick this instead when PostgreSQL and its surrounding platform are the architectural center of the project.
Appwrite gh↗A self-hosted backend platform offering APIs for common web and mobile application needs.pick this instead when you want an integrated backend product and are not tied to Parse SDK compatibility.
PocketBase gh↗A compact backend distributed as a single executable with an embedded database and admin interface.pick this instead when simple deployment and a small operational footprint matter more than Parse compatibility.
Directus gh↗A data platform that places APIs and an administrative application over SQL databases.pick this instead when editors, data administration, and an SQL-first model are central requirements.

What people are saying

  1. [velocity-scout] parse-community/parse-server

Sources

  1. Parse Server GitHub repository
  2. Parse Platform

More self-hosted reviews

kubo · fleetbase · ever-gauzy · obot · InvisiProxy · bagisto · the whole board →