Quick Start Guide
This guide will walk you through deploying your first Raindrop application. You’ll create a simple “Hello World” service that responds to HTTP requests.
Prerequisites
- Node.js and npm installed on your system
- A terminal or command prompt
- A Raindrop account (sign up for beta access)
Step-by-Step Guide
1. Install Raindrop CLI
First, install the Raindrop Build tool globally using npm:
2. Set Up Your Account
If you haven’t already, sign up for our beta. Then authenticate your CLI:
Follow the prompts in your terminal and browser to complete authentication.
3. Create Your Project
Initialize a new Raindrop project:
This creates a new project directory with a raindrop.manifest
file.
4. Configure Your Service
Open hello-world/raindrop.manifest
and add your service configuration:
5. Generate Project Files
Generate the required TypeScript files and install dependencies:
6. Implement Your Service
Navigate to src/hello-world/index.ts
and update the response message:
7. Deploy Your Application
Create a branch and deploy your application:
8. Test Your Deployment
Your application is now live! Test it using cURL:
You should see:
What’s Next?
- Explore more advances services and configurations
- Learn about Raindrop’s deployment features
- Check out our other guides and tutorials