
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
html5-entry-webpack-plugin
Advanced tools
The html5-entry-webpack-plugin allows using an HTML file as an entry module. It looks for resources in the file and includes them properly.
To begin, you'll need to install html5-entry-webpack-plugin:
npm install html5-entry-webpack-plugin --save-dev
Use an HTML file with all the necessary references:
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My App</title>
<link rel="stylesheet" href="./style.scss">
</head>
<body>
<div id="app"></div>
<script src="./index.tsx"></script>
</body>
</html>
The references to the files index.tsx and style.scss will be resolved, handled, and replaced with their outputs.
Then add the plugin to your webpack config. For example:
webpack.config.js
const { resolve } = require('path');
const { Html5EntryWebpackPlugin } = require('html5-entry-webpack-plugin');
module.exports = {
entry: {
main: resolve(__dirname, 'src/index.html'),
},
plugins: [new Html5EntryWebpackPlugin()],
};
And run webpack via your preferred method. This will emit index.html as a file along the other files, script and style bundles.
(No options yet.)
Contributions in any form are appreciated and much welcome!
Just make sure to post an issue or reach out to me on Gitter before starting actual work on anything. It really helps to avoid problems.
This plugin is released using the MIT license.
FAQs
Webpack plugin for allowing HTML files as entry modules.
The npm package html5-entry-webpack-plugin receives a total of 278 weekly downloads. As such, html5-entry-webpack-plugin popularity was classified as not popular.
We found that html5-entry-webpack-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.