
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.
ejs-plain-loader
Advanced tools
EJS (Embeded JavaScript) loader for Webpack. It converts EJS templates to plain HTML using the EJS npm package.
npm i -D ejs-plain-loader
<!DOCTYPE html>
<html lang="en">
<head>
<%= include('partials/head.ejs') %>
</head>
<body>
<%= include('partials/navbar.ejs') %>
<main>
<!-- ... -->
</main>
<%= include('partials/footer.ejs') %>
</body>
</html>
NOTE: You need to chain the ejs-plain-loader with an html loader such as the html-loader and use a template plugin such as the html-webpack-plugin. To install these run npm i -D html-loader html-webpack-plugin.
Inside your webpack config file add the fallowing rules
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
// ...
module: {
rules: [{
test: /\.ejs$/i,
use: [{
loader: 'html-loader', // loader for html files goes here
options: {
attrs: [':src', ':data-src', 'source:srcset', 'source:data-srcset'], // load(require) images, videos or other resources
interpolate: true
}
}, {
loader: 'ejs-plain-loader'
}]
}]
},
plugins: [
new HtmlWebpackPlugin({ // plugin for templates goes here
template: './src/views/index.ejs'
})
]
// ...
}
<!-- plain import -->
<%- include('partials/my-awesome-partial.ejs') %>
<!-- appending data -->
<%- include('partials/card.ejs', {
title: 'Lorem ipsum',
content: 'Lorem ipsum dolor sit amet',
actions: ['read more', 'add to favorites']
}) %>
Example:
index.ejs
<!DOCTYPE html>
<html lang="en">
<head>
<%- include('partials/header.ejs', {
title: 'Webpack Starter App',
author: 'John Doe',
keywords: ['lorem', 'ipsum', 'dolor', 'sit', 'amet'],
description: 'Lorem ipsum dolor sit, amet consectetur adipisicing elit.'
}) %>
</head>
<body>
<%- include('partials/navbar.ejs') %>
<main>
<!-- MAIN CONTENT -->
</main>
<%- include('partials/footer.ejs') %>
</body>
</html>
header.ejs
<%
if (typeof description === 'undefined') description = 'placeholder';
if (typeof keywords === 'undefined') keywords = ['placeholder'];
if (typeof author === 'undefined') author = 'placeholder';
if (typeof title === 'undefined') title = 'placeholder';
%>
<meta charset="UTF-8">
<meta name="description" content="<%= description %>">
<meta name="keywords" content="<%= keywords.join(',') %>">
<meta name="author" content="<%= author %>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title><%= title %></title>
Note: When you import a file using the import partials/navbar syntax you have to use this syntax across all of the files you are including in navbar.ejs.
Example:
index.ejs
<!DOCTYPE html>
<html lang="en">
...
<body>
...
<%- include partials/navbar %>
...
</body>
</html>
navbar.ejs
<!DOCTYPE html>
<html lang="en">
...
<body>
...
<%- include('partials/navbar.ejs') %> <!-- Throws an error -->
<%- include partials/navbar %> <!-- Works fine -->
...
</body>
</html>
index.ejs
<!DOCTYPE html>
<html lang="en">
<head>
<%-
const meta = require('../data/index-meta.js');
include('partials/header.ejs', meta);
%>
</head>
<!-- ... -->
</html>
index-meta.js
module.exports = {
title: 'Webpack Starter App',
author: 'John Doe',
keywords: ['lorem', 'ipsum', 'dolor', 'sit', 'amet'],
description: 'Lorem ipsum dolor sit, amet consectetur adipisicing elit.',
customFunction: function() {
// ...
}
}
See tags
See EJS options
For more info on how to use EJS visit their npm package page or their official website
FAQs
EJS webpack loader
We found that ejs-plain-loader 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.