Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1016 Bytes

README.md

File metadata and controls

53 lines (34 loc) · 1016 Bytes

hugo-cli

Build Status

A simple Node wrapper around hugo, the static site generator. It fetches the right hugo executable before piping all provided command line arguments to it.

Usage

$ node_modules/.bin/hugo -h
INFO hugo not found. Attempting to fetch it...
INFO fetched hugo v0.45.1
INFO extracting archive...
INFO hugo available, let's go!

hugo is the main command, used to build your Hugo site.

Hugo is a Fast and Flexible Static Site Generator
built with love by spf13 and friends in Go.

Complete documentation is available at http://gohugo.io/.

Usage:
  hugo [flags]
  hugo [command]

...

Integrations

Add to your build scripts in package.json to build you site from NodeJS:

  ...
  "scripts": {
    "build": "hugo"
  },
  ...

Execute directly via npx:

npx hugo-cli server

License

MIT