One very nice feature, for me, is to use it as an easy data-store for a standalone client application. You could save your date to xml, file, or something like SQLite (possibly with NHibernate), but nothing compares to the ease-of-use with RavenDb.
If you construct your classes well, with aggregates and a domain-driven approach, you can just pass your objects, and RavenDb does the rest. No need for mapping files, serialize attributes, or other complicating stuff. And no need to compromise your model (which is necessary for NHibernate for example).
The fact that you better use a domain-drive approach with aggregates, is a good thing, not a bad thing.