Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@bitjourney/check-es-version-webpack-plugin
Advanced tools
Webpack plugin to ensure the output results are valid in the specified ES version
This plugin checks if the ES version of the webpack outputs is compatible with the specified version of ES.
For example, if your project supports IE11, which supports up to ES5, you have to ensure your JavaScript bundles does not include ES2015+ syntax such as classes, async/await, and so on.
// in webpack.config.js
const { CheckEsVersionPlugin } = require("@bitjourney/check-es-version-webpack-plugin");
const config = {
// ...
};
if (productionMode) {
// this plugin works only for production mode,
// because webpack wraps the input with eval() in development mode.
config.plugins.push(
new CheckEsVersionPlugin({
esVersion: 5,
}),
;
}
// ...
This is published to npmjs.com:
https://www.npmjs.com/package/@bitjourney/check-es-version-webpack-plugin
npm install @bitjourney/check-es-version-webpack-plugin
This module uses acorn to parse sources with a specified ES version.
That is, acorn.parse(source, { ecmaVersion: 5 })
throws SyntaxError
if the source
includes ES2015 syntax.
ISC License
Copyright (c) 2018, Bit Journey, Inc.
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
FAQs
Webpack plugin to ensure the output results are valid in the specified ES version
The npm package @bitjourney/check-es-version-webpack-plugin receives a total of 6,745 weekly downloads. As such, @bitjourney/check-es-version-webpack-plugin popularity was classified as popular.
We found that @bitjourney/check-es-version-webpack-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.