
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
ect templates compiler for webpack
ectjs is one of the fastest templating libraries out there, but not so well known by the community.
As there wasn't a loader for webpack, I've decided to build one before going to bed. Here it is, show your apretiation by starring the project, tweeting and enjoy using it.
npm i --save-dev ect-loader
This webpack config can compile ect templates for you to use on your browser
without having to load ECT and CoffeeScript browser versions.
module.exports = {
module: {
loaders: [
{ test: /\.ect$/, loader: "ect" }
]
}
};
This loader minifies template before compiling in case you're running with
performance enhancment option (webpack -p).
It works by cutting off spaces between HTML tags and line-breaks.
<div id="testing">
<%- __ "Read the docs" %>
</div>
<div id="testing"> Lê a documentação </div>
FAQs
ect templates compiler for webpack
The npm package ect-loader receives a total of 2 weekly downloads. As such, ect-loader popularity was classified as not popular.
We found that ect-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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.