Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
grunt-hotbox-deploy
Advanced tools
Grunt task for deploying front-end bundles to Hotbox
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-hotbox-deploy --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-hotbox-deploy');
grunt.initConfig({
hotbox_deploy: {
options: {
AccessKeyId: '<s3 access key>',
SecretKey: '<s3 secret key>',
bucket: '<bucket name>',
endpoint: '<s3 server>',
dest: '.build',
prodDest: '___prod'
},
your_target: {
versionedStatic: {
files: [{
src: ['**/*.*'],
cwd: 'static/'
}]
},
static: {
files: [{
src: ['js/landings/loader.js'],
cwd: 'static/'
}]
},
templates: {
files: [{
src: ['*.html'],
cwd: 'templates/'
}]
}
}
}
});
aws-config.json
содержит аналогичные опциям параметры, конфиг гранта приоритетней. aws-config.local.json
перебивает aws-config.json
, нужно добавить в .gitignore
Формат содержимого aws-config.json или aws-config.local.json:
[
{
"name": name1,
...options
},
{
"name": name2,
...options2
},
]
или
{
...options
}
Если данные хотя бы в одном из файлов представлены в виде массива, то при выполнении в консоли нужно будет выбрать используемый конфиг по ключу name. На выбор предоставляются конфиги одного из файла, в зависимости от того, длина какого массива больше, при этом конфиги без поля name игнорируются. Если конфиги с выбранным именем есть в обоих файлах, то они сливаются, опции из aws-config.local.json приоритетнее.
При запуске с опцией --project=somename автоматически выбирается конфиг с name == somename.
При выполнении с флагом --deploy-to-prod-branch, название ветки можно не указывать. В таком случае будет использовано значение из опции prodBranch (по умолчанию omega-test).
Параметром --config можно задать файл, который будет использоваться вместо aws-config.local.json.
Type: String
Default value: ''
Ключ доступа к S3
Type: String
Default value: ''
Секретный ключ для достпа к S3
Type: String
Default value: ''
Имя бакета, в который надо залить бандл
Type: String
Default value: 'hb.bizmrg.com'
Адрес сервера, на который надо залить бандл
Type: String
Default value: '.build'
Временная папка для сборки. Чистится перед запуском сборки. Нужно добавить в .gitignore
Type: String
Default value: '___prod'
Папка, в которую копируются шаблоны, при выкладке в бой командой grunt hotbox_deploy --deploy-to-prod-branch=<branch>
, где <branch>
имя ветки для выкладки в продакшн, предварительно собранной в тест.
<target>
.versionedStaticType: Object
Default value: undefined
Настройки для версионированной статики.
<target>
.versionedStatic.filesType: Object
Default value: undefined
Массив настроек поиска файлов.
<target>
.versionedStatic.files[i].cwdType: Object
Default value: undefined
Путь, относительно которого работать с файлами. Аналогичен стандартной настройке grunt
<target>
.versionedStatic.files[i].srcType: Object
Default value: undefined
Набор масок поиска файлов. Аналогичен стандартной настройке grunt
<target>
.staticType: Object
Default value: undefined
Настройки для не версионированной статики.
<target>
.static.filesType: Object
Default value: undefined
Массив настроек поиска файлов.
<target>
.static.files[i].cwdType: Object
Default value: undefined
Путь, относительно которого работать с файлами. Аналогичен стандартной настройке grunt
<target>
.static.files[i].srcType: Object
Default value: undefined
Набор масок поиска файлов. Аналогичен стандартной настройке grunt
<target>
.templatesType: Object
Default value: undefined
Настройки для шаблонов.
<target>
.templates.filesType: Object
Default value: undefined
Массив настроек поиска файлов.
<target>
.templates.files[i].cwdType: Object
Default value: undefined
Путь, относительно которого работать с файлами. Аналогичен стандартной настройке grunt
<target>
.templates.files[i].srcType: Object
Default value: undefined
Набор масок поиска файлов. Аналогичен стандартной настройке grunt
FAQs
Grunt task for deploying front-end bundles to Hotbox
We found that grunt-hotbox-deploy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.