@vanruesc/hugo-bin
v0.53.0
Published
Binary wrapper for Hugo
Downloads
4
Readme
hugo-bin
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