0.1.3 • Published 5 years ago

hugo-bin-latest v0.1.3

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

hugo-bin Build Status dependencies Status devDependencies Status

Binary wrapper for Hugo

Install

npm install --save-dev hugo-bin

Usage

API

const execFile = require('child_process').execFile;
const hugo = require('hugo-bin');

execFile(hugo, ['version'], (err, stdout) => {
  console.log(stdout);
});

CLI

$(npm bin)/hugo --help
npm run create -- 'post/my-new-post' # see below 'npm-run-script'

npm-run-script

{
  "scripts": {
    "build": "hugo",
    "create": "hugo new",
    "serve": "hugo server -ws"
  }
}

See the Hugo Documentation for more information.

Supported versions

See the package.json commit history.

Full example

Super Inspired By

License

MIT © Shun Sato

0.1.3

5 years ago

0.1.2

6 years ago

0.1.0

6 years ago