layout: default title: PouchDB, the JavaScript Database that Syncs!

<div class="row">

  <div class='col-sm-6'>

    <h1>The Database that Syncs!</h1>

    <p>PouchDB is an open-source JavaScript database inspired by <a href="http://couchdb.apache.org/">Apache CouchDB</a> that is designed to run well within the browser.</p>

    <p>PouchDB was created to help web developers build applications that work as well offline as they do online.<br>
    <p>It enables applications to store data locally while offline, then synchronize it with CouchDB and compatible servers when the application is back online, keeping the user's data in sync no matter where they next login.</p>

    <a href="{{ site.baseurl }}/learn.html" class="btn btn-primary btn-lg">Learn more</a>

  </div>

  <div class='col-sm-6'>

{% highlight js %} var db = new PouchDB(‘dbname’);

db.put({ _id: ‘dave@gmail.com’, name: ‘David’, age: 67 });

db.changes().on(‘change’, function() { console.log(‘Ch-Ch-Changes’); });

db.replicate.to(‘http://example.com/mydb’); {% endhighlight %}

  </div>

</div>
<div class='row'>


  <div class='block col-sm-6 col-md-3'>

    <div class="icon icon-node"></div>

    <h3>Cross Browser</h3>
    <p>Works in Firefox, Chrome, Opera, Safari, IE and Node.js</p>

  </div>

  <div class='block col-sm-6 col-md-3'>

    <div class="icon icon-light"></div>

    <h3>Lightweight</h3>
    <p>PouchDB is just a script tag and 34KB (gzipped) away in the browser, or <code>$ npm install pouchdb</code> away
    in Node.</p>

  </div>

  <div class='block col-sm-6 col-md-3'>

    <div class="icon icon-learn"></div>

    <h3>Easy to Learn</h3>
    <p>Requires some programming knowledge, however PouchDB is a piece of cake to learn.</p>

  </div>

  <div class='block col-sm-6 col-md-3'>

    <div class="icon icon-open"></div>

    <h3>Open Source</h3>
    <p>Everything is developed out in the open on Github, contributors always welcome!</p>

  </div>

</div>
<h3>Latest</h3>

    <div class="row">

{% for post in site.posts limit:2 %}

{% include post_details.html %}

{% endfor %}

View more