Existing CMS solutions are cumbersome and not worth the hassle for small projects. I created Justfields to be fast & simple.
Get started - it's freeYes, a content management system can be a great thing. But why spend hours reading docs and configuring schema's, projects and API tokens, just to get to the good stuff?
Click together your data structure online in seconds and pass the content editor URL to your client.
Don't waste time setting up hosting or configuring a database.
Stop studying a new templating system just to get to the data. Justfields returns plain JSON, you already know how to work with that. Use it for any project, in any way you want.
It's instant – no installation, no dependencies, no build steps.
Use the online admin interface to create the data structure (schema) using fields with different datatypes like text, select, image, etcetera.
In a separate editor interface, your client can add content to the configured fields. This online interface is very easy to use.
The JSON output contains your data structure with the client's content.
Because it's just JSON, you can use it however you want. Some example use cases:
// Javascript
fetch('https://justfields.com/project/1bvE8yWw/json')
.then( response => response.json() )
.then(function (data) {
console.log(data.example_group.page_title)
data.example_group.teammembers.forEach(function(teammember){
console.log(teammember.name, teammember.position)
})
})
Copy & paste this code in your browser's console to see it fetch the data.