reimplemented in rust for performance reasons.
| pug.js | pug-rs | |--------|--------| | 780ms | 29ms |
$ cargo install pug
$ pug < thing.pug > thing.html
pug_loader.js:
javascript
const spawnSync = require('child_process').spawnSync;
module.exports = function(source) {
var proc = spawnSync("pug", {
input: source
});
if (proc.status != 0) {
throw proc.error;
}
return proc.stdout.toString();
}
``` module: { rules: [ { test: /.pug$/, use: [require.resolve('./pug_loader.js')] },
```