# Run multiple frameworks in one project with Vercel Services

DevFeed: [Run multiple frameworks in one project with Vercel Services](<https://devfeed.tech/articles/run-multiple-frameworks-in-one-project-with-vercel-services-1077.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/run-multiple-frameworks-in-one-project-with-vercel-services>)

Author: Yury Selivanov

Published: 2026-06-30T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [Vercel](<https://devfeed.tech/topics/vercel.md>), [Frameworks](<https://devfeed.tech/topics/frameworks.md>), [Back end](<https://devfeed.tech/topics/backend.md>), [Front end](<https://devfeed.tech/topics/frontend.md>), [Express](<https://devfeed.tech/topics/express.md>), [FastAPI](<https://devfeed.tech/topics/fastapi.md>), [Flask](<https://devfeed.tech/topics/flask.md>), [Hono](<https://devfeed.tech/topics/honojs.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Go](<https://devfeed.tech/topics/go.md>), [Routing (disambiguation)](<https://devfeed.tech/topics/routing.md>), [Rust](<https://devfeed.tech/topics/rust.md>)

Tags: [backend](<https://devfeed.tech/tags/backend.md>), [backends](<https://devfeed.tech/tags/backends.md>), [cli](<https://devfeed.tech/tags/cli.md>), [frameworks](<https://devfeed.tech/tags/frameworks.md>), [frontend](<https://devfeed.tech/tags/frontend.md>), [go](<https://devfeed.tech/tags/go.md>), [routing](<https://devfeed.tech/tags/routing.md>), [rust](<https://devfeed.tech/tags/rust.md>), [ui](<https://devfeed.tech/tags/ui.md>), [vercel](<https://devfeed.tech/tags/vercel.md>)

## AI overview

Vercel Services lets developers deploy multiple frontend and backend services using different frameworks within one Vercel project. Services share a domain, communicate privately through service bindings, and build, preview, and roll back together.

## Source excerpt

You can now deploy multiple frontends and backends together within a single Vercel project. Vercel Services is now available, allowing you to deploy full stack apps with multiple frameworks on a shared domain, where services talk to each other privately and deployments build, preview, and roll back together. Services are defined in vercel.json: From there, your services show up across the dashboard and CLI: The Deployments panel visualizes the services graph The Logs UI filters by individual service vercel dev runs every service locally for a production-like environment Service bindings Services talk to each other internally with the new bindings key, without routing through the public internet: The frontend reaches the backend privately through the URL in BACKEND_INTERNAL_URL: Framework-defined infrastructure Most frameworks run with zero configuration. Framework-defined infrastructure means each service's framework is auto-detected and auto-provisioned, from FastAPI and Flask to Express and Hono, with first-class support for Go and Rust. Services run on Fluid compute with Active CPU pricing, so you only pay for the time your code is actually running. Read the documentation to get started. Read more