TiloBox
Back to directory
Fonoster project preview

Fonoster

The open-source alternative to Twilio. Programmable telecommunications stack.

LicenseMIT
GitHub stars6.5k
Last commit1 weeks ago
Tags6 topics
Twilio AlternativeSipVoipNodejsTelephonyIvr
Overview

Why consider Fonoster?

Fonoster is an innovative open-source programmable telecommunications platform. It enables developers to deploy Voice, SMS, SIP trunking, and conversational IVR bots using Node.js and gRPC.

Guided learning

Learn Fonoster by building

Practical setup notes, real use cases, and copy-ready examples in one focused guide.

1 min read 3 sections
In this guide3 sections

Overview of Fonoster

Fonoster allows organizations to build modern cloud telephony applications without proprietary telecommunication vendor lock-in. It combines SIP proxy routing, programmable voice bots, text-to-speech (TTS), and SMS routing into a microservices architecture.

Deploying with Docker

bash
1git clone https://github.com/fonoster/fonoster.git
2cd fonoster/deployment
3docker compose up -d

Access the Fonoster console or CLI on http://localhost:8080.

Writing a Programmable Voice Handler

javascript
1const { VoiceServer } = require("@fonoster/voice");
2
3const voiceServer = new VoiceServer();
4voiceServer.listen(async (req, res) => {
5 await res.answer();
6 await res.say("Welcome to TiloBox open-source telecommunications!");
7 await res.hangup();
8});

Fonoster is licensed under the permissive MIT License.

Related tools

More options with a similar category or technology profile.

Fonoster FAQs

Fonoster is listed as a Developer Tools tool on TiloBox. Review the overview, features, and official documentation on this page to decide whether it solves your specific workflow.

Start with the project's GitHub repository and official website for supported installation and deployment instructions. Test the setup with representative data or a small project before rolling it out more widely.

Fonoster is listed under the MIT license. Read the complete license text and the project's notices before using, modifying, or distributing the software.

Production readiness depends on your requirements. Review maintenance activity, security practices, documentation, backup and upgrade procedures, and compatibility with your stack; then validate it in a non-production environment.

Fonoster is listed as an alternative to Twilio. Compare the core workflow, deployment model, integrations, and licensing against your must-have requirements before switching.