Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
debian-node-deploy
Advanced tools
Here is a little module I made to simplify my deployments needs.
Install locally
npm install debian-node-deploy
or
yarn add debian-node-deploy
create the config file on your app root : deploy.config.json
.
Here is a sample configuration for node apps:
{
"envFile": ".env.production",
"host": "my-production-server.org",
"port": 22,
"user": "myusername",
"sshKey": "/path/to/ssh/key",
"filesRestoryPath": "/where/to/send/the/archive/containing/the/code/to/deploy",
"deployPath": "/where/to/deploy/the/app/on/production/server",
"appPreStopCommands": [],
"appPostStopCommands": [],
"appPreStartCommands": [],
"appPostStartCommands": []
}
For a single page applications, we need to specify two more properties:
{
"envFile": ".env.production",
"host": "my-production-server.org",
"port": 22,
"user": "myusername",
"password": "my password",
"sshKey": "/path/to/ssh/key",
"filesRestoryPath": "/where/to/send/the/archive/containing/the/code/to/deploy",
"deployPath": "/where/to/deploy/the/app/on/production/server",
"websiteDomain": "mywebsite.com",
"appPreStopCommands": [],
"appPostStopCommands": [],
"appPreStartCommands": [],
"appPostStartCommands": []
}
The last four properties allow you to specify commands to execute before/after stopping the previous version in production and before/after starting the app.
You can trigger a deploy from cli or from code. There is two types of deployments available:
Here is an example to add a deploy task to the scripts section of package.json.
"scripts": {
"deploynodeapp": "npm run build && deployNodeApp",
"deployspa": "npm run build && deploySinglePageApp"
},
import deployNodeApp from "debian-node-deploy";
(async () => {
await deployNodeApp(); // To deploy a node app
await deployspa(); // or to deploy a spa
})();
FAQs
Unifying deployment tasks for my production server
We found that debian-node-deploy 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
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.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.