@vanruesc/hugo-bin

Binary wrapper for Hugo

Usage no npm install needed!

<script type="module">
  import vanruescHugoBin from 'https://cdn.skypack.dev/@vanruesc/hugo-bin';
</script>

README

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