Cloudflare Pages
Build and deploy full-stack applications instantly
Cloudflare Pages is a serverless platform that lets you build, collaborate, test, and deploy applications quickly. Developers, designers, and product teams can work together with minimal configuration needed.
Rapid Deployment
Effortless Collaboration
Global Performance
Full-stack application development with Cloudflare Pages
Build, collaborate, test, and deploy full-stack applications quickly
Cloudflare Pages Popular Use Cases for Cloudflare Pages
Discover how Cloudflare Pages simplifies development and deployment
Learn how to build applications with Cloudflare PagesInstant Full-Stack Deployment
Streamlined GitHub Integration
Collaborative Project Sharing
Automatic Scaling
Code Examples for Cloudflare Pages
Explore code examples for building and deploying full-stack applications
import { NextPage } from 'next';export default function HomePage() { return <div>Welcome to my Pages site!</div>;}from flask import Flask, jsonifyapp = Flask(__name__)@app.route('/api/data')def get_data(): return jsonify({'message': 'Hello from Pages!'})if __name__ == '__main__': app.run()curl -X POST \ https://api.cloudflare.com/client/v4/pages/projects \ -H 'Authorization: Bearer YOUR_API_TOKEN' \ -H 'Content-Type: application/json' \ -d '{"name":"my-pages-project","github":{"repo":"my-github-repo"}}'<html> <head> <script src="https://cdn.cloudflare.com/analytics.js"></script> </head> <body> <h1>Welcome to my Pages site!</h1> </body></html>