This is the first post. Written in Markdown, stored as a flat file — no database.
Why flat files?
- Simple to back up: just copy the
posts/directory - Version-controllable with git
- Edit posts directly in VI if you want
const greet = name => `Hello, ${name}`;
console.log(greet('world'));
Keep it simple...