Lessons From 7 Years of .IO Games: What Works, What Doesn’t Work, Where to Go From Here

Rate this content
Bookmark

Having worked for 7 years on popular .io games like Krunker.io, Diep.io, and Ev.io, I've seen the multiplayer web game market grow and evolve on the bleeding edge of web tech over the years.

FAQ

I-O games are multiplayer web games that are easy to play and can be addictive with gameplay extending for hours. They cater to players with short attention spans by offering simple mechanics and the ability to play in large lobbies, making them engaging and accessible.

Agar.io, launched in 2015, was pivotal in popularizing I-O games by featuring simple gameplay where players control a blob to consume others in a competitive lobby. Its simplicity and multiplayer aspect attracted massive player engagement and set the stage for subsequent I-O games.

Initially characterized by basic graphics and simple gameplay, I-O games evolved around 2016 by incorporating more complex game mechanics like skill trees and themed gameplay, enhancing depth and engagement without compromising the ease of access.

I-O games engage players through features like five-second startup times, quick learning of game mechanics, ephemeral leaderboards, and network effects that encourage frequent and short play sessions. These elements help maintain player interest and competitive spirit.

I-O games typically grow their user base through network effects and organic sharing among players, especially in school settings. This grassroots approach allows them to acquire users without the need for traditional marketing expenditures.

Monetizing I-O games is challenging due to their casual nature and the environments they are often played in, like schools. Strategies such as offering in-game purchases or pushing players to other platforms where monetization is easier have been employed to tackle this issue.

Recent improvements in web gaming standards, such as WebGPU, WASM threads, and enhanced web transports for low latency, are set to significantly enhance the quality and performance of multiplayer web games, making them more competitive with traditional gaming platforms.

Nathan Flurry
Nathan Flurry
14 min
28 Sep, 2023

Comments

Sign in or register to post your comment.

Video Summary and Transcription

I-O games are multiplayer web games that are easy to pick up but can be played for hours. Developers have added deeper game mechanics and adapted I-O games for mobile, generating high revenue. Acquiring users for I-O games is done by sharing the games to play together at school. Monetization of I-O games is primarily through ads, as it is difficult to generate in-app purchases from the web. Web standards and user-generated content are opening up new possibilities for better web games.

1. Introduction to I-O Games

Short description:

I've been working on I-O games for seven years and I'm going to share some tips on game design technology and business decisions that you can use to build a killer I-O game yourself. I-O games are multiplayer web games that are easy to pick up but can be played for hours on end. The whole .IO craze was kicked off in 2015 with Agar.io, a game where players move a blob and eat other blobs. It became so popular that it even appeared in House of Cards. This led to the creation of Iogames.space, a web portal featuring I.O. games.

My name is Nathan Flurry. I've been working on I-O games for seven years. Some titles I've worked on include Krunker, D-E-F, eeveeo, and MooMoo. I'm going to share some tips on game design technology and business decisions that you can use to build a killer I-O game yourself.

Before diving into it, I want to give an overview of what an I-O game is. I-O games are multiplayer web games that are easy to pick up but can be played for hours on end. You can think of it like the tick-tock of gaming by catering to short attention spans with endless gameplay. The whole .IO craze was kicked off in 2015 when a game called Agar.io launched. This game was dead simple. All you could do was move the blob and eat other blobs. The killer feature though was that lobbies had over 50 players in them, so players would have to spend hours on end collaborating with friends to get at the top of the leaderboard, even though the mechanics are dead simple. Agar.io was so popular, it made an appearance in House of Cards in 2016.

A series of games followed suit with simple mechanics, basic graphics and large lobbies including Slither.io, which is a modern take on Snake, and Splix.io, which is a territory conquering game. This led to the creation of Iogames.space which is a popular web portal that features specifically I.O. games. If you played a lot of web games during this time, I.O.games.space was such an awesome site because there was a brand new multiplayer game almost every single day with unique mechanics. Because there was no review process or downloads required for publishing I.O. games, developers could quickly iterate on games, and many of the best games you know today were developed in less than a month and matured over the following years. Older web portals also got onto the trend and started featuring I.O. games to fill out the void that Flash and Shockwave left when they were phased out.

2. Evolution of I-O Games

Short description:

Around 2016, developers started adding deeper game mechanics to I-O games. Around 2018, developers realized that many players were students in classrooms, playing these games as a substitute for console and desktop games. Some developers adapted I-O game mechanics for mobile, generating high revenue. Key pillars of I-O games include fast startup times, short learning times, ephemeral leaderboards, and network effects. To achieve fast startup times, games are designed to load within five seconds on low-end hardware. Nonessential assets are lazily loaded, and the engine is structured to load assets individually as needed. The initial JavaScript bundle for Kronka includes core maps, class configuration, and character models.

Around 2016, developers started adding deeper game mechanics by adding up great trees. Diep was a game where players could build unique tanks, Mop was an animal based game where players climbed the food chain, and Moo Moo was a PvP sandbox game where players could build forts. This was around the time I started working on some of the original games built by Sydney DeBrese, like Moo Moo and some less known games.

Around 2018, developers realized that many of their players were students in classrooms, playing these games as a substitute for console and desktop games available at home. They started building simplified browser based versions of popular games tailored for short play sessions. Most notably, I worked on Crunker, which is a counterstrike in the browser. Other examples include Zombs Royale and Build Royale, which are 2D versions of Fortnite, and Evo, which brought Destiny-like gameplay to the browser. If you go to a public library today, I guarantee you you'll see players, you'll see students playing one of these games.

Around the same time, some developers realized Io game mechanics could be adapted for mobile, to leverage new audiences and higher ad revenue. Most notably Voodoo adapted games like Paper.io, Whole.io for mobile touch friendly controls, with offline modes with fake opponents. The company Voodoo refined this technique so well that they generated $430 million in revenue in 2021, and had six billion downloads across all of those games. All of these Io games have a few key pillars in common, five second startup times, 60 second mechanic learning times, ephemeral leaderboards, and network effects. If you follow these pillars, your game will be able to replicate what works well for popular Io games.

For five second startup times, as I mentioned earlier, most Io gamers are students in classrooms. To give some context, Gen Z has an average of eight second attention span, and Io games only stick if players can get in the game before they lose interest. Because of that, we ensure that all of our games load within five seconds on low end hardware, which is a tall order for any traditional desktop game. Thankfully, the web is uniquely suited for this. If a web browser can load everything from Google Docs to Figma within a few seconds, it's entirely doable for games too. For example, when working on Kronka, we needed to build an immersive 3D game that still loaded within a five second window. Most important thing we did to achieve this is that we did not use a game engine like Unity. Game engines are great because they give you everything you need out of the box, but that comes at the cost of really long load times. Only one game I've mentioned this entire talk was built with Unity, and this is why.

Another important thing we did was lazily load all nonessential assets. Similar to how web pages lazily load images and scripts, games are exactly the same. If you open Kronka, you'll notice that you'll connect to a server before the textures load or the sound starts playing. That's because everything required to play the game is under five megabytes and the rest is lazily loaded. We also structured the engine so that it could load assets individually as needed, instead of downloading a single large package on startup. For example, there are thousands of scans and weapon models available in the game, but we only download the relevant content when needed. Similarly, we embed as much as possible into the initial JavaScript bundle you load on startup. Everything from the core maps, the class configuration, the character models are embedded into the initial JavaScript package for Kronka.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Optimizing HTML5 Games: 10 Years of Learnings
JS GameDev Summit 2022JS GameDev Summit 2022
33 min
Optimizing HTML5 Games: 10 Years of Learnings
Top Content
The open source PlayCanvas game engine is built specifically for the browser, incorporating 10 years of learnings about optimization. In this talk, you will discover the secret sauce that enables PlayCanvas to generate games with lightning fast load times and rock solid frame rates.
Remix Flat Routes – An Evolution in Routing
Remix Conf Europe 2022Remix Conf Europe 2022
16 min
Remix Flat Routes – An Evolution in Routing
Top Content
This talk introduces the new Flat Routes convention that will most likely be the default in a future version of Remix. It simplifies the existing convention as well as gives you new capabilities.
Building Fun Experiments with WebXR & Babylon.js
JS GameDev Summit 2022JS GameDev Summit 2022
33 min
Building Fun Experiments with WebXR & Babylon.js
Top Content
During this session, we’ll see a couple of demos of what you can do using WebXR, with Babylon.js. From VR audio experiments, to casual gaming in VR on an arcade machine up to more serious usage to create new ways of collaboration using either AR or VR, you should have a pretty good understanding of what you can do today.
Check the article as well to see the full content including code samples: article. 
Making Awesome Games with LittleJS
JS GameDev Summit 2022JS GameDev Summit 2022
34 min
Making Awesome Games with LittleJS
LittleJS is a super lightweight game engine that is easy to use and powerfully fast. The developer will talk about why he made it, what it does, and how you can use it to create your own games. The talk will include a demonstration of how to build a small game from scratch with LittleJS.
How Not to Build a Video Game
React Summit 2023React Summit 2023
32 min
How Not to Build a Video Game
In this talk we'll delve into the art of creating something meaningful and fulfilling. Through the lens of my own journey of rediscovering my passion for coding and building a video game from the ground up with JavaScript and React, we will explore the trade-offs between easy solutions and fast performance. You will gain valuable insights into rapid prototyping, test infrastructure, and a range of CSS tricks that can be applied to both game development and your day-to-day work.
Boost the Performance of Your WebGL Unity Games!
JS GameDev Summit 2023JS GameDev Summit 2023
7 min
Boost the Performance of Your WebGL Unity Games!
Unity, when deployed on the web, faces three critical challenges: build size, memory usage, and overall performance. This lecture delves deep into advanced optimization techniques to help you address each of these issues. Attendees will gain insights into:
- Effective strategies for optimizing textures, audio, and models.- A detailed analysis of our ASTC experimentation with Unity, shedding light on the unexpected results despite Unity's claims.- A comprehensive guide to Unity's memory profiling tool and its implications.- An exploration of lesser-known Unity settings that remain underutilized by many developers.
Additionally, we'll introduce our proprietary tool designed specifically for Unity optimization. We will also showcase CrazyGames' developer dashboard, our platform that enables developers to monitor and enhance the performance of their web-based games seamlessly. 
Join us to equip yourself with the latest strategies and tools to elevate your Unity web gaming projects.

Workshops on related topic

Make a Game With PlayCanvas in 2 Hours
JSNation 2023JSNation 2023
116 min
Make a Game With PlayCanvas in 2 Hours
Top Content
Featured WorkshopFree
Steven Yau
Steven Yau
In this workshop, we’ll build a game using the PlayCanvas WebGL engine from start to finish. From development to publishing, we’ll cover the most crucial features such as scripting, UI creation and much more.
Table of the content:- Introduction- Intro to PlayCanvas- What we will be building- Adding a character model and animation- Making the character move with scripts- 'Fake' running- Adding obstacles- Detecting collisions- Adding a score counter- Game over and restarting- Wrap up!- Questions
Workshop levelFamiliarity with game engines and game development aspects is recommended, but not required.
PlayCanvas End-to-End : the quick version
JS GameDev Summit 2022JS GameDev Summit 2022
121 min
PlayCanvas End-to-End : the quick version
Top Content
WorkshopFree
João Ruschel
João Ruschel
In this workshop, we’ll build a complete game using the PlayCanvas engine while learning the best practices for project management. From development to publishing, we’ll cover the most crucial features such as asset management, scripting, audio, debugging, and much more.
Introduction to WebXR with Babylon.js
JS GameDev Summit 2022JS GameDev Summit 2022
86 min
Introduction to WebXR with Babylon.js
Workshop
Gustavo Cordido
Gustavo Cordido
In this workshop, we'll introduce you to the core concepts of building Mixed Reality experiences with WebXR and Balon.js.
You'll learn the following:- How to add 3D mesh objects and buttons to a scene- How to use procedural textures- How to add actions to objects- How to take advantage of the default Cross Reality (XR) experience- How to add physics to a scene
For the first project in this workshop, you'll create an interactive Mixed Reality experience that'll display basketball player stats to fans and coaches. For the second project in this workshop, you'll create a voice activated WebXR app using Balon.js and Azure Speech-to-Text. You'll then deploy the web app using Static Website Hosting provided Azure Blob Storage.
How to create editor experiences your team will love
React Advanced Conference 2021React Advanced Conference 2021
168 min
How to create editor experiences your team will love
Workshop
Lauren Etheridge
Knut Melvær
2 authors
Content is a crucial part of what you build on the web. Modern web technologies brings a lot to the developer experience in terms of building content-driven sites, but how can we improve things for editors and content creators? In this workshop you’ll learn how use Sanity.io to approach structured content modeling, and how to build, iterate, and configure your own CMS to unify data models with efficient and delightful editor experiences. It’s intended for web developers who want to deliver better content experiences for their content teams and clients.