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.
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.
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.