Hosting my backend server with 0 signups Introduction I was developing a bot for <a href="https://github.com/the-monkeys" target="_blank">Monkeys</a> (an open source organisation focused on creating a no-nonsense information), to help with routine tasks, reminders etc. The discord documentation recommends <a href="https://ngrok.com/" target="_blank">ngrok</a> for hosting the bot server. So when I clicked on the site, and saw a signup page my mind shouted lame!. What if there was a way to host my server but without having to rely on a cloud service that requires a signup. Spoiler alert! <a href="https://malai.sh/" target="_blank">malai</a> was just the answer I was looking for. Welcome malai <a href="https://malai.sh/" target="_blank">Malai</a> is a tool that lets you expose your HTTP as well as TCP on internet via <a href="https://github.com/kulfi-project/kulfi" target="_blank">Kulfi</a> network which is a P2P network, so no cloud!. Building with malai Let me demonstrate how easy it is to create host a discord bot server with malai, and test it. I am using <a href="https://deno.com/" target="_blank">Deno</a>. But you can follow any tech stack here. Let’s add a healthcheck route and test if our server is hosted on internet or not. I run this server on localhost using Now to host this server with malai I just need to run one command i.e <a href="https://malai.sh/" target="_blank">Malai</a> will generate a unique url that you can use and access your server from anywhere. To confirm that we’re really on the internet, let’s create an endpoint which discord will use to register the bot. Conclusion That’s it! Malai is so easy to use and there is no signup process, authentication tokens api limit. Just generate a unique url and use it. I built a whole discord bot using malai, you can find it’s code at <a href="https://github.com/the-monkeys/orangutan" target="_blank">https://github.com/the-monkeys/orangutan</a>