The official website and blog for FuryStack — a flexible end-to-end framework for building complex services with Node.js.
Live site: https://furystack.github.io
- Astro — Static site generator
- TypeScript — Type safety
- Markdown — Blog content via Astro Content Collections
- ESLint 9 + Prettier — Linting & formatting
- Node.js 22+
- Yarn (via Corepack)
corepack enable
yarn install
yarn devThe dev server runs at http://localhost:4321.
yarn buildOutput goes to dist/.
yarn previewBlog posts live in src/content/posts/ as Markdown files with frontmatter:
---
title: 'Post Title'
author: [gallayl]
tags: ['Getting Started']
image: img/cover.jpg
date: '2024-01-01T00:00:00.000Z'
draft: false
excerpt: A short summary of the post.
---Author data is in src/data/authors.yaml and tag metadata in src/data/tags.yaml.
The site deploys automatically to GitHub Pages via GitHub Actions on push to main. See .github/workflows/deploy.yml.
MIT