Complete collection of code examples, tutorials, and sample implementations for ServerlessKit.
- Python SDK - Complete Python examples
- JavaScript SDK - Node.js and browser examples
- Go SDK - Go language examples
- Project Setup - Initialize and deploy projects
- Connector Management - Install and configure connectors
- Development Workflow - Development and debugging
- Payment Processing - Stripe payment integration
- Email Delivery - SendGrid email examples
- Communication - Slack, Discord integrations
- Multi-tenant Apps - Workspace isolation patterns
- Billing Integration - Usage tracking and subscriptions
- Webhook Handling - Process platform webhooks
Each example includes:
- Complete working code
- Step-by-step setup instructions
- Explanation of key concepts
- Links to relevant documentation
Browse the directories above to find examples relevant to your use case.
Most examples can be run with minimal setup:
# Clone repository
git clone https://github.com/ServerlessKit/examples.git
cd examples
# Set up environment
cp .env.example .env
# Edit .env with your API keys
# Run Python examples
cd python/basic-usage
pip install -r requirements.txt
python app.py
# Run Node.js examples
cd javascript/basic-usage
npm install
node app.js
We welcome community contributions! See CONTRIBUTING.md for guidelines on submitting new examples.
Examples maintained by the ServerlessKit community