1.7.0 • Published 10 months ago

jsonblog-generator-boilerplate v1.7.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

JsonBlog Generator Boilerplate

npm version CI License: MIT TypeScript

A modern, customizable static blog generator that serves as a reference implementation for JsonBlog. This package is used by jsonblog-cli to generate clean, modern HTML output.

Want to create your own blog theme? Fork this repository and customize it! This boilerplate is designed to be a starting point for your own generator. See the Creating Your Own Generator section below.

Features

  • Clean, modern HTML output
  • Markdown support with code highlighting
  • Customizable templates using Handlebars
  • TypeScript support
  • Well-documented API
  • Extensive test coverage
  • Perfect starting point for your own generator

Installation

npm install jsonblog-generator-boilerplate

Usage

import { generator } from 'jsonblog-generator-boilerplate';

const blog = {
  site: {
    title: 'My Blog',
    description: 'A blog about my thoughts',
  },
  basics: {
    name: 'John Doe',
  },
  posts: [
    {
      title: 'Hello World',
      content: '# My First Post\n\nWelcome to my blog!',
      createdAt: '2025-02-25',
    },
  ],
};

const files = await generator(blog, './output');

Development

Prerequisites

  • Node.js >= 20.0.0
  • npm

Setup

# Clone the repository
git clone https://github.com/jsonblog/jsonblog-generator-boilerplate.git
cd jsonblog-generator-boilerplate

# Install dependencies
npm install

# Build the project
npm run build

# Run tests
npm test

Available Scripts

  • npm run build - Build the TypeScript code
  • npm test - Run tests
  • npm run lint - Run ESLint
  • npm run format - Format code with Prettier

Release Process

  1. Make your changes
  2. Run tests and linting: npm test && npm run lint
  3. Use one of the following commands to create a new version:
    • npm run release:patch - Bug fixes (1.0.0 -> 1.0.1)
    • npm run release:minor - New features (1.0.0 -> 1.1.0)
    • npm run release:major - Breaking changes (1.0.0 -> 2.0.0)
  4. Create a new release on GitHub to trigger the publishing workflow

Creating Your Own Generator

This boilerplate is designed to be forked and customized. Here's how to create your own generator:

Quick Start

  1. Fork this repository
  2. Update package.json with your generator name (e.g., jsonblog-generator-yourname)
  3. Customize the templates in templates/
  4. Modify the styles in assets/main.css
  5. Test your changes with the provided test suite
  6. Publish to npm!

What to Customize

  • templates/layout.hbs: Main layout template with HTML structure
  • templates/index.hbs: Blog index page template
  • templates/post.hbs: Individual post template
  • assets/main.css: Your custom styles
  • src/index.ts: Generator logic (if needed)

Generator API

Your generator only needs to implement one function:

async function generator(blog: BlogConfig, outputPath: string): Promise<GeneratedFile[]>;

The boilerplate handles:

  • Markdown rendering
  • File management
  • Template processing
  • Content fetching (local, remote, IPFS)

You just focus on making it look great!

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Related Projects

  • jsonblog-cli - Command-line interface that uses this generator

License

This project is licensed under the MIT License - see the LICENSE file for details.

1.7.0

10 months ago

1.6.0

10 months ago

1.5.0

10 months ago

1.4.0

10 months ago

1.3.1

10 months ago

1.3.0

10 months ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago