
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
TCP server and deployment system that flips from one deployment to another.
// server.js
var flipover = require('../')
, childport = require('childport')
;
function run (deploy, cb) {
function finish (e) {
cb(e, p)
}
var p = childport.cp(deploy.port, finish).spawn('node', [__dirname+'/child.js'])
deploy.outputProcess(p)
}
function test (deploy, cb) {
request('http://localhost:'+deploy.port+'/test', function (e, resp, body) {
if (e) return cb(e)
if (resp.statusCode !== 200) return cb(new Error('statusCode is not 200', resp.statusCode))
})
}
flipover(run, test).listen(8080, 7171)
var http = require('http')
, childport = require('childport')
;
childport.listen(http.createServer(function (req, resp) {
resp.statusCode = 200
resp.end('ok')
}))
Port to listen on. Callbacks for new deployments must not be resolved until the server is listening on this port.
flipover(function (deploy, cb) {}, [function test (deploy, cb) {}])Returns a flipover server.
Requires a function for you to write your deployment code. This function takes two arguments: a Deploy instance and a callback which takes two arguments: error and an instance of child_process.ChildProcess which will be monitored and killed if need be.
Optionally you can also pass a test function which is used to validate the server is working and test it periodically.
FlipOver.listen(serverPort, adminPort, cb)Listen.
FAQs
TCP server and deployment system that flips from one deployment to another.
The npm package flipover receives a total of 2 weekly downloads. As such, flipover popularity was classified as not popular.
We found that flipover demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.