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.
automatic-updates
Advanced tools
Tools to automatically update nodejs programs installed as modules from npm/github.
Tools to automatically update nodejs programs installed as modules from npm/github.
Check the version of the installed module and compares with the lastest module in npm to check whether to install new module using npm install -g
Only public npm packages are supported. If you'd like your application to be private, you can consider using github
Runs git pull
and gets github cli handle the rest.
This allows the program to freely reside in private github repos and still be able to auto-update. This requires an ssh key to be supplied.
For using github, you will create a file in ~/etc/${yourprojectname}/system.yaml
with the contents:
sshKey: path to ssh key
Project name is the name in package.json
. The active branch is master. So ensure you use that as your default branch instead of main.
const automaticUpdates = require('automatic-updates');
automaticUpdates.init()
Automatic Updates
Kind: global class
Update Interval
Kind: instance property of automaticUpdates
Source from which to update
Kind: instance property of automaticUpdates
Initialize automatic updates
Kind: instance method of automaticUpdates
Param | Type | Default | Description |
---|---|---|---|
options | object | Options | |
[options.interval] | number | 3600 | Interval over which to check for updates. |
[options.source] | string | "npm" | The source from which to check for updates. |
Update using git pull from github repo
Kind: instance method of automaticUpdates
update from npm
Kind: instance method of automaticUpdates
update node modules for current project
Kind: instance method of automaticUpdates
FAQs
Tools to automatically update nodejs programs installed as modules from npm/github.
The npm package automatic-updates receives a total of 1 weekly downloads. As such, automatic-updates popularity was classified as not popular.
We found that automatic-updates 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.
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.