Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@holidayextras/deployment-helpers
Advanced tools
A collection of scripts that can be used as part of a deployment process.
This project holds various deployment scripts that are used with AWS CodeDeploy and releasing our private NPM modules.
createPrivateRelease.sh
This will check if the package.json
version has been updated for a project and then create a new release on github after running npm build
and commiting any changed release assets in the dist
directory.
cachedInstallModules.sh
This can speed up installation of node modules on hosted CI. It stores a hash of the package.json
into the node_modules directory and uses it to determine if we may need to reinstall. Alongside this, it can automatically upgrade npm
, and wipe out the cached node_modules directory if package.json
has changed (to ensure unused modules are removed, and that new releases satisfying the current version range are updated to).
Use and configure with package.json:
"scripts": {
"install:cached": "rm -rf ./deployment-helpers && git clone https://github.com/holidayextras/deployment-helpers.git && ./deployment-helpers/nodeApps/cachedInstallModules.sh"
},
"config": {
"nodeModuleCaching": {
// "clear", "prune" or omit.
// "clear" is slower, but will pick up all available updates to modules
// "prune" is faster, but will continue using already-cached modules if
// they still satisfy the range. Extraneous modules are removed.
// If omitted, the usual approach of simply running `npm install` is used,
// which will not install available updates or remove extraneous modules.
"strategy": "clear",
// Which npm version to install. Omit to use the existing default.
"npmVersion": 3,
// Increment this optional key to invalidate the current module cache, without
// resorting to hacks like adding whitespace to the end of package.json
"incrementToForceUpdate": 1
}
},
We currently use a combination of npm version 1 and above, because of this we can not scope the package name in the package.json
, when a new NPM release is required please add the scope to the package name (@holidayextras/deployment-helpers
) manually before running npm publish
.
FAQs
A collection of scripts that can be used as part of a deployment process.
The npm package @holidayextras/deployment-helpers receives a total of 250 weekly downloads. As such, @holidayextras/deployment-helpers popularity was classified as not popular.
We found that @holidayextras/deployment-helpers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.