Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
By using upx.exe this plugin is able to compress executables files up to 85% of their original size.
By using upx.exe this plugin is able to compress executables files up to 85% of their original size.
This plugin requires Grunt ~0.4.5
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-upx --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-upx');
In your project's Gruntfile, add a section named upx
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
upx: {
default_options: {
options: {
speed: 9,
agrs: ' --compress-icons=0'
},
files: {
src: ['test/file.exe'],
dest: 'test/dist'
}
}
}
});
Type: integer
Default value: 3
This represent the speed and compression type, 1 being the faster and less compress.
Type: String
Default value: none
You can pass any extra arguments available in upx
In this example, the default options are used to compress executable in a folder and then send to a distibution folder. If you want to keep the executables in the same folder, just remove the destination folder.
grunt.initConfig({
upx: {
options: {
speed: 8
},
files: {
src: ['test/file.exe'],
dest: 'test/dist'
}
}
});
In this example, custom options are used get the best compression and create a backup file of the executable while keeping it in the same folder.
grunt.initConfig({
upx: {
options: {
speed: 9,
args ' -k'
},
files: {
src: ['test/file.exe']
}
}
});
FAQs
By using upx.exe this plugin is able to compress executables files up to 85% of their original size.
The npm package grunt-upx receives a total of 1 weekly downloads. As such, grunt-upx popularity was classified as not popular.
We found that grunt-upx 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.