This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan
<p>I'm writing up a blog post about the early Mobile Web API's and Alex Russell reminded me of Google Gears</p>
<blockquote>
<p>Gears modules include:</p>
<ul>
<li>LocalServer Cache and serve application resources (HTML, JavaScript, images, etc.) locally</li>
<li>Database Store data locally in a fully-searchable relational database</li>
<li>WorkerPool Make your web applications more responsive by performing resource-intensive operations asynchronously</li>
</ul>
</blockquote>
<p><a href="https://web.archive.org/web/20090317170140/http://code.google.com/apis/gears/">Read full post</a>.</p>
<p>I think it is interesting to see that AppCache and WebSQL, Geolocation and WebWorkers came out of the ideas in Google Gears and it's only the latter two that really survived. WebSQL was never broadly supported, and was replaced by IndexedDB; and AppCache replaced by ServiceWorker</p>
This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan