I am trying to create a simple site with flat-file content management, and a Vue.js front-end. I hope to approximate the following file structure:
app
- various vue files and folders
- data.json
- posts
- - post1.md
- - post2.md
There would be some kind of build process that takes each markdown file in app/posts
, processes the markdown, and stores everything in app/data.json
. Then the vue.js front-end can just import data.json and use it to hydrate various components as needed.
The problem I am having in finding a solution is that there are tons of flat-file CMS out there, but very few of them seem to allow you to get between the processing of the flat files and the rendering of the templates. Most of the flat-file CMS I have encountered are designed to generate a static site folder structure of html documents. Since I intend to use a front-end framework with routing (I am using Vue, but it could be React, Choo, etc.), I need a flat-file CMS that will easily dump the data it processes from the folder structure into a single JSON file that can be adapted to serve as the data model for Vue.
I've Googled this many times and in many ways. The fact that so few results come back, in spite of the omnipresence of front-end js frameworks, is making me wonder if there's some obvious reason you wouldn't build a site this way, or some key term I'm missing.
So, my questions:
Is there a flat-file CMS that allows you to easily harvest the data it extracts without generating a full static site?
If not, why? Is it that the processing of a folder full of markdown files is simple enough that it should just be done with a custom npm script? Is there a glaringly obvious reason that generating a js-framework-friendly mini-database from a flat file system is a dumb idea?
If you're still in need of a solution: there might possibly be one from our PHP and jQuery based flat file CMS. It outputs everything to database.js in JSON format. The database.js structure looks like this:
The CMS will need some custom work so you could pull the data from database.js (since only a logged in user can read/write to the database.js). This would allow you to pull the database data with Vue and work with displaying the content. Project link: https://github.com/robiso/wondercms