Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
ejs-webpack-plugin
Advanced tools
将ejs
等非语法糖的模板自动关联已编译完的前端脚本
npm install ejs-webpack-plugin --save-dev
Define in your webpack configuration file the plugins with an array of file you want to compile
// webpack.config.js
const ejsPlugin = require('ejs-webpack-plugin');
module.exports = {
plugins: [
new ejsPlugin(options)
]
};
You can configure your compilation with additional parameters:
let objects = {
context:__dirname, //当前context
entry:{
'../views/entry/index.ejs': //ejs入口文件
{
'js':['index','commons'], //js名称,包括公共
'css':['index'], //css 名称
'output':'./views' //默认同Key //产出目录
},
'../views/entry/user.ejs':
{
'js':['user','commons'],
'css':['user'],
'output':'./views'
}
}
};
// origin 原始模样
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/index.css' />
<script src="/javascripts/index.js" type="text/javascript"></script>
</head>
<body>
<h1><%= title %></h1>
<p>EJS Welcome to <%= title %></p>
</body>
</html>
编译之后
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel="stylesheet" href=/javascripts/index_44e4c.js />
<script type="text/javascript" src = /javascripts/index_44e4c.js></script>
<script type="text/javascript" src = javascripts/commons.bundle.js></script>
</head>
<body>
<h1><%= title %></h1>
<p>EJS Welcome to <%= title %></p>
</body>
</html>
详细的目录对比请参照这里的website项目
Go to the Latest Release
MIT
FAQs
Webpack plugin to build EJS files
The npm package ejs-webpack-plugin receives a total of 4 weekly downloads. As such, ejs-webpack-plugin popularity was classified as not popular.
We found that ejs-webpack-plugin 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.