
Only flat file CMS and serverless functions are enough for my needs
This also obliviate the need to monitor your own database or entrust a third party to do it for you.
Still, you might need some functions you cannot rely on clients' web browser, such as adding search. Downloading indexes to client's machine is expensive and bad for SEO.
Adding Search
So, I use lunr.js instead.
olivernn/lunr.js
I built two essential files on the fly, before starting up a Nuxt server.
db.json
created byJSON.string(glob)
idx.json
created byJSON.stringify(lunr)
See,
patarapolw/polv
Do you know that you can rollup a temporary server, potentially needed by gatsby build
or nuxt generate
? Such solutions are
marmelab/json-graphql-server
typicode/json-server
I still have an editor / CMS, though; but it specifically targets a flat file folder,
patarapolw/superflat
Did I mentioned that I think I was wrong in thinking that I need a CMS? The truth is I still need a CMS, but I don't want to monitor a database.
One more thing I need is commenting engine. Indeed, an option is just use Disqus, but in the end, I hosted by own using Remark42, with a little tweak to make it work with SPA.