Crates.io | ipug |
lib.rs | ipug |
version | 0.2.1 |
source | src |
created_at | 2024-05-20 14:46:52.069403 |
updated_at | 2024-05-26 02:17:54.914607 |
description | pug.js port to Rust |
homepage | |
repository | https://github.com/i18n-now/pug-rs |
max_upload_size | |
id | 1245791 |
size | 25,468 |
A port of pug to Rust.
This is a maintained fork of the original code by github.com/aep.
$ cargo install pug
$ pug < thing.pug > thing.html
pug_loader.js:
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();
}
webpack.config.js
module: {
rules: [
{
test: /\.pug$/,
use: [require.resolve('./pug_loader.js')]
},