A developer tool for testing Firebase Cloud Messaging (FCM) push notifications to iOs and Android devices.
Supports both Data Only Messages and Notification Messages.
FCM Tester helps developers validate notification delivery, configure payload structures, and test various notification types without requiring a complete app deployment.
Key Features that not available in other FCM Tester tools:
Supports Data Only Messages
FCM request payload and response payload are clearly visible
The easiest way to get started is using our pre-built Docker image:
# Pull the image from DockerHub
docker pull gobansource/fcmtester:latest
# Run the container
docker run -p 8080:8080 gobansource/fcmtester:latest
# Access FCM Tester at http://localhost:8080
# Clone the repository
git clone https://github.com/gobansource/fcmtester.git
cd fcmtester
# Build the frontend
cd frontend
npm install
npm run build
# Build and run with Docker
docker build -t fcmtester .
docker run -p 8080:8080 fcmtester