Netlify is a cloud platform for building, deploying, and running modern web projects. It popularized and championed the JAMstack (JavaScript, APIs, Markup) approach by combining Git‑driven continuous deployment, a global CDN, serverless functions, and edge compute into a single developer experience aimed at fast, secure, and scalable sites and apps.
Quick facts
- Founded: 2014
- Founders: Mathias (“Matt”) Biilmann and Christian Bach
- Headquarters: San Francisco / distributed engineering
- Business model: SaaS (free tier → Pro → Enterprise)
- Core audience: frontend engineers, design teams, startups, e‑commerce and marketing sites
- Notable capabilities: Git→build→deploy workflow, Deploy Previews, Netlify Functions (serverless), Edge Functions, automatic HTTPS, built‑in form handling, plugin ecosystem
Why teams use Netlify
- Instant Git‑backed deployments and preview URLs for pull requests accelerate review cycles.
- Global CDN and edge features reduce latency and enable per‑user personalization near the user.
- Serverless functions let teams attach backend logic without managing servers.
- Built‑in features (forms, identity, redirects, analytics) remove common infra work for marketing and documentation sites.
- Strong ecosystem of build plugins and integrations (GitHub/GitLab/Bitbucket, headless CMSs, CI/CD tools).
History
- Origin: started by two Danish founders who aimed to simplify web deployment and elevate frontend development into a first‑class architectural layer. The company publicly launched from private beta in 2015.
- Growth: grew from a two‑person bootstrapped team into a venture‑backed company with hundreds of employees and millions of developers using the service. Netlify raised multiple funding rounds and reached unicorn status after later investments.
- Market impact: an early and influential proponent of the JAMstack movement; competitor set includes Vercel, Cloudflare Pages, and traditional CDNs/cloud hosts.
Product / feature overview
- Continuous deployment: connect a Git repo and every push/build becomes a deploy. Branches and pull requests get immutable preview deploys with unique URLs.
- CDN hosting: static and prebuilt assets served from a global CDN with automatic caching and invalidation.
- Netlify Functions: serverless functions (JavaScript/TypeScript/Go) used for API endpoints, webhooks, background jobs.
- Edge Functions: lightweight JavaScript/TypeScript functions executed at CDN edge locations (Deno runtime) for personalization, middleware, redirects, A/B tests, and geo/locale logic.
- Build plugins: extend the build pipeline with community and custom plugins (image optimization, search indexing, testing etc.).
- Forms & Identity: first‑class form handling and optional Netlify Identity for auth flows (features vary by plan).
- CLI & local dev: a CLI and local dev tooling (Netlify Dev) provide local emulation of functions and edge behavior.
- Analytics & monitoring: built‑in lightweight analytics; integration with external observability tools for deeper insights.
Technical highlights & examples
- 
Deploy preview workflow: each pull request results in a full site build and a shareable preview URL that mirrors production behavior (functions, redirects, and build plugins included). 
- 
Edge Function example (JS): 
// netlify/edge-functions/hello.js  
export default async (request, context) => {  
  return new Response('Hello from the edge', { headers: { 'content-type': 'text/plain' } });  
};  
export const config = { path: '/edge/hello' };  - Serverless function example (API):
// netlify/functions/submit-form.js  
exports.handler = async (event, context) => {  
  const payload = JSON.parse(event.body || '{}');  
  // process payload, call external API, etc.  
  return { statusCode: 200, body: JSON.stringify({ ok: true }) };  
};  Use cases
- Marketing and brochure sites that need fast time‑to‑market and secure, low‑maintenance hosting.
- Documentation and developer portals benefiting from preview links and easy versioning.
- Jamstack applications that combine static rendering with APIs and serverless backends.
- Personalized experiences and middleware at the edge (A/B tests, geo redirects, auth guards).
- Prototyping and rapid product iteration using atomic deploys and instant rollbacks.
Pricing & commercial considerations
- Model: tiered SaaS — free tier for hobby projects and smaller sites, paid Pro/Team tiers for additional bandwidth/build minutes and features, and Enterprise plans for large organizations with SLAs and advanced controls.
- Bandwidth and function execution are notable metered resources; teams should monitor usage because traffic spikes (or attacks) can generate overage charges.
- Certain advanced features (identity, enterprise analytics, premium support) are gated behind paid plans.
Competitors & ecosystem
- Primary competitors: Vercel, Cloudflare Pages, Amazon S3 + CloudFront + Lambda, Netlify’s ecosystem of integrations (headless CMS, search providers, CI tools).
- Netlify’s differentiators: highly polished developer UX (deploy previews + rich build plugin ecosystem), early investment in edge/preview workflows, opinionated JAMstack tooling.
Notable customers & scale indicators
- Millions of developers have used Netlify; customers include startups and large brands (publicly named customers historically include companies like Google, Nike, Twilio).
Caveats & operational notes
- Edge vs Functions: Edge Functions run in a Deno‑based runtime with different compatibility than Node.js serverless functions—some npm packages relying on Node built‑ins won’t work at the edge.
- Request/response behavior: middleware patterns using context.next() and request body handling require attention (request bodies can be read only once; rewrites/redirects and caching must be considered).
- Monitoring cost: built‑in analytics are lightweight; production observability often requires third‑party services for in‑depth tracing and logs.
Further reading & references
- Official Netlify documentation (site listed in frontmatter) contains guides on Deploy Previews, Edge Functions, Netlify Functions, and build plugins.