Ask HN: What is the best way to author blogs in 2024?
11–20 of 137 posts
Re: Ask HN: What is the best way to author blogs in 2024?
#12I recommend Svekyll (https://extrastatic.dev/svekyll/svekyll-cli). Svekyll combines the simplicity of Jekyll with the power of Svelte.
This is a post I made recently:
https://webiphany.com/2024-04-29-distance-sean-shawn
That post uses Svelte to build interesting animations, includes a AI embedding model right inside the post and runs in your browser.
And, if you want to hack the entire post yourself, scroll to the bottom, click the view source button and then click download. That will download a zip file which can build that post independently by just running "npm i && npm run build". That command generates a single HTML file with everything inlined so you can take that and put it on any static website.
Svekyll posts are just markdown, but you can add anything like vanilla js and Svelte components, and tailwind is included automatically.
I don't see anything else out there that is as simple or expressive as Svekyll. And 99% of that is just that I don't see anything out there that is as simple or expressive as Svelte.
Re: Ask HN: What is the best way to author blogs in 2024?
#13Bear blog hosts a bunch of technical blogs, is markdown based, and open-source. https://bearblog.dev
Re: Ask HN: What is the best way to author blogs in 2024?
#14If you don't want to pay, use Astro and put it on Vercel or Cloudflare Pages.
Re: Ask HN: What is the best way to author blogs in 2024?
#15I found solutions out there were either full fledged cms which are cumbersome to setup and honestly distracting.
I was looking for something that was easy to work with like medium or notion, supports markdown syntax, and is fully headless because I like tinkering with the other frontend stuffs. If you have similar issues, check out wisp: https://wisp.blog/.
You can even try out the editor before signing up for anything: https://www.wisp.blog/try-editor
Also if you are looking to have a blog template to just kickstart the process, you can get everything wired up in the next 20 mins with this: https://github.com/Wisp-CMS/nextjs-blog-cms-wisp
Disclaimer: I'm the builder for wisp and have 200+ happy users now.
Re: Ask HN: What is the best way to author blogs in 2024?
#16Re: Ask HN: What is the best way to author blogs in 2024?
#17Not sure which one’s the ideal tool but I’m slowly collecting them all here: https://manuelmoreale.com/blog-platforms
Re: Ask HN: What is the best way to author blogs in 2024?
#18I'd suggest Astro ( https://astro.build/ )
The Amplify hosting platform is very easy to get started with. I use it with Hugo, it’s super-convenient, IMO.
Re: Ask HN: What is the best way to author blogs in 2024?
#19Write in markdown, transfer it with rsync to a server running hugo or jekyll?
You can easily have your own domain connected to it and GitHub will provide an SSL certificate.