
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
gulp-layout
Advanced tools
Gulp plugin to switch layout files for each content (like a jekyll). We can use many template engines thanks to consolidate.js.
npm install gulp-layout
var gulp = require('gulp');
var layout = require('gulp-layout');
gulp.task('build', function() {
return gulp.src('./src/test.html')
.pipe(layout({
title: 'Hello World',
layout: 'post.pug'
}))
.pipe(gulp.dest('./dist'));
});
(src) test.html:
<p>gulp</p>
(layout) post.pug:
h1= title
|!= contents
(dist) test.html:
<h1>Hello World</h1><p>gulp</p>
Use gulp-markdown & gulp-front-matter (thanks!)
var gulp = require('gulp');
var frontMatter = require('gulp-front-matter');
var markdown = require('gulp-markdown');
var layout = require('gulp-layout');
gulp.task('build', function() {
return gulp.src('./src/**/*.md')
.pipe(frontMatter())
.pipe(markdown())
.pipe(layout(function(file) {
return file.frontMatter;
}))
.pipe(gulp.dest('./dist'));
});
(src) test.md:
---
title: Hello World
layout: post.pug
---
gulp
(layout) post.pug:
doctype html
html
head
title= title
body
!= contents
(dist) test.html:
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<p>gulp</p>
</body>
</html>
More example: see examples.
options {Object}
layout {String}: File path of template. If not set engine, select the template engine by this extension.engine {String}: Name of template engine. Use this option if cannot decide the engine by layout. For example, the extension of layout is .htmlfunc {Function}: Please return options. It will be called with the file.FAQs
Gulp plugin to switch layout files for each content (like a jekyll)
The npm package gulp-layout receives a total of 138 weekly downloads. As such, gulp-layout popularity was classified as not popular.
We found that gulp-layout demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.