Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I'd also recommend taking a look at Cloud CMS (http://www.cloudcms.com).</p> <p>Full Disclosure - I'm one of the founders of Cloud CMS. So I'm a big fan. Plus, I think it's awesome.</p> <p>Our platform is entirely built around JSON and JSON Schema for modeling content. You just write content in and it's immediately versioned, indexed and available for query and full-text search. Our data store is fully consistent with content modeling (types, properties, associations, aspects) and validation. Basically, we try to handle all the hard stuff so that you can just get coding.</p> <p>We provide drivers for native devices as well as JavaScript/HTML5, Java and other languages. Our JavaScript driver features asynchronous chaining so that you code becomes really simple. Like this:</p> <pre><code>// define an article using JSON schema branch.create({ "qname": "custom:article", "properties": { "header": { "type": "string" }, "rating": { "type": "number", "minValue": 0 }, "author": { "type": "string" } } }); // create an article branch.createNode({ "_type": "custom:article", "header": "Pink Floyd Reunites for World Tour!", "rating": 50, "author": "gilmour" }); // search for articles using full-text search branch.searchNodes("Pink Floyd").each(function() { $('body').append("Found an article: " + this.get('header') + "&lt;br/&gt;"); }); // query for articles with structured MongoDB query branch.queryNodes({ "author": "gilmour", "rating": { "&amp;gt": 40 } }).count(function(count) { $('body').append("There were: " + count + " total articles"); }); </code></pre> <p>That's a rough example. There's a lot more available on the web site.</p> <p>Cloud CMS is worth a look because it's a genuine content platform built on top of JSON, MongoDB and a pure cloud architecture. It scales well but also has a lot of the enterprise-class features of big old expensive software. We really want to keep costs low and so we've elected to go with a pure metered billing model (as a utility, kind of like your electric bill).</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload