Netlify Guide 🌐🚀

Frontend Deployment Platform

1. What is Netlify?

Netlify is a platform used to deploy static websites and frontend applications with ease.

2. Features

- Drag & drop deploy
- Git-based deployment
- Serverless functions
- CDN hosting

3. Deployment Methods

1. Drag & Drop (HTML/CSS)
2. GitHub integration
3. CLI deploy

4. CLI Deploy

npm install -g netlify-cli
netlify deploy

5. Serverless Functions

exports.handler = async () => {
  return { statusCode: 200, body: "Hello" };
};

6. Best Use Cases

Static sites
Portfolio websites
Frontend apps
Simple APIs

7. Limitations

- Not for heavy backend
- Limited compute

8. Real Use Cases