Netlify pioneered the JAMstack movement. It deploys static sites and serverless functions with CI/CD, forms, identity, and more — all free.
Free Tier
- 100GB bandwidth/month
- 300 build minutes/month
- 125K serverless function invocations
- 100 form submissions/month
- Identity — 1000 active users
- Large media — Git LFS support
- Split testing — A/B test branches
Deploy
npm i -g netlify-cli
netlify deploy --prod
Serverless Functions
// netlify/functions/hello.js
export default async (req, context) => {
return new Response(JSON.stringify({ message: 'Hello' }));
};
Built-in Forms
<form name="contact" netlify>
<input name="email" type="email" />
<textarea name="message"></textarea>
<button type="submit">Send</button>
</form>
No backend needed — Netlify handles form submissions.
Need JAMstack help? Check my work on GitHub or email spinov001@gmail.com for consulting.
Top comments (0)