0.2.0 • Published 7 months ago

kiji v0.2.0

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

Kiji

A simple blogging framework.

Features

  • Server-side rendering
  • Works on Bun, Cloudflare Workers, etc.
  • RSS feed
  • Search articles (Full text search is not currently supported)

Get Started

Download this repository

$ git clone https://github.com/shinosaki/kiji
$ cd ./kiji

Install depends

$ npm i

Customize config file Config file location is ./config.js.

  • lang: Blog's language (Default: 'en')
  • onion: Onion Service's address
    If you set onion address, append Onion-Location header for response.
  • cache
    • maxAge: Cache-Control header's max-age value (Default: Undefined)
  • menus: Links for header's menu.
  • links: Links for side or footer's menu.
  • app
    • name: Blog title
    • description: Blog description
    • copy: Copyright in footer
      • name: Copyright name
      • link: Copyright name's link

Create new post Create new Markdown file to ./asset/posts/ directory.

or Add articles repository as a git submodule.

$ git submodule add posts.git ./assets/posts

Generate index file

$ npm run posts

Generated posts.json file in ./asstes directory.

Start dev server in local Wrangler (Cloudflare Workers)

$ npm run dev

and Open http://localhost:8787 in the browser.

Bun:

$ npm run dev:bun

and Open http://localhost:3000 in the browser.

Deploying Cloudflare Workers

$ npm run deploy

Bun 1. Building standalone binary

$ npm run build
  1. Execution binary
$ npm run production

Author

Shinosaki

Dependencies

  • hono
  • js-yaml
  • marked
  • zod
  • tailwindcss
  • wrangler

License

MIT

0.2.0

7 months ago

0.1.0

7 months ago