Build your own blog site from scratch, without pain.


License
MIT
Install
npm install @vlog/core@0.8.0

Documentation

Vlog

Build your own blog site from scratch, without pain.

Features

  • Zero configuration: Vlog doesn't require any config files such as .vlogrc or vlog.config.js until you need it.
  • No vendor lock-in: You can use Vlog with your favorite frameworks: React, Angular, Vue, and Vanilla JS.

Getting Started

$ mkdir ./src
$ echo "{}" > ./src/index.json
$ echo "# Hello, World!" > ./src/2020-02-02-hello-world.md
$ npx @vlog/vlog

API

import { Compiler } from "@vlog/core";
import { createMarkdownPlugin } from "@vlog/plugin-markdown";

const main = async () => {
  const compiler = await Compiler.create({
    plugins: [createMarkdownPlugin()],
  });

  await compiler.compile();
};

Plugins

License

MIT License