Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Package | shake |
Description | Deployment tool for node |
Node Version | >= 0.4 |
$ shake setup:deploy:something["some arg", true, 2]:status
Add a .shake.coffee or .shake.js file to your project root.
A task is a function that takes 3 arguments. Any arguments inside [ and ] will be applied to the task function after the initial 3.
module.exports =
sometask: (local, remote, done) ->
# local = local machine
# remote = remote machine (defined in target)
local.exec """
whoami
ls -la
mkdir test
""", (res) ->
# res = array of stdout+stderr
remote.exec "ls -la", (res) ->
done() # Call this when the task is finished
Here is an example config demonstrating basic functionality:
# This is a non-standard config used only within this config
# you can make this file look like whatever you want as long as you export
# your tasks and target
app =
sudo: "sudo" # Change this to "" to disable sudo
parent: '/var/www/'
name: 'your cool app name'
app.repository = "git@github.com:your cool username/#{app.name}.git"
app.folder = "#{app.parent}#{app.name}/"
app.start = "coffee #{app.folder}start.coffee"
app.log = "/var/log/#{app.name}.log"
module.exports =
target: 'cool server'
clean: (local, remote, done) ->
remote.exec """
#{app.sudo} rm -rf #{app.folder}
""", done
setup: (local, remote, done) ->
remote.exec """
NAME=`whoami`;
#{app.sudo} mkdir -p #{app.folder}
#{app.sudo} chown -R $NAME:$NAME #{app.folder}
git clone #{app.repository} #{app.folder}
cd #{app.folder}
npm install
""", done
deploy: (local, remote, done) ->
remote.exec """
cd #{app.folder}
git pull
sudo killall node
npm install
#{app.sudo} stop #{app.name}
#{app.sudo} start #{app.name}
""", done
start: (local, remote, done) ->
remote.exec "#{app.sudo} start #{app.name}", done
stop: (local, remote, done) ->
remote.exec "#{app.sudo} stop #{app.name}", done
restart: (local, remote, done) ->
remote.exec "#{app.sudo} restart #{app.name}", done
log: (local, remote, done) ->
remote.exec "tail -n 100 #{app.log}", done
status: (local, remote, done) ->
remote.sexec "ps -eo args | grep '#{app.name}' | grep -v grep", (res) ->
done if res then "Online" else "Offline"
FAQs
Deployment tool for node
We found that shake 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.