New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

garcom

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

garcom

Rerun a command until it returns successfully or a timeout is reached. Garçom means waiter in Portuguese

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Garcom

Rerun a command until it returns successfully or a timeout is reached. (Garçom means waiter in Portuguese)

Basic usage

Note: Garcom requires node 4+

npm i -g garcom
garcom <timeout> [<options>] <command>

garcom 60 --message "We didn't make it in time :(" sh my-script.sh && echo "Worth the wait"

Options

Garcom has one required argument, the number of seconds to wait before timing out garcom <timeout>

--message <string: ''> message to write to stderr on failure (defaults to not writing)
--delay <number: 0.5> number of seconds to wait between runs of the given command
--invert <bool: false> if true, run command until it does _not_ exit succesfully
--silent <bool: false> write stderr and stdout of command to current process

Examples

# we are waiting for a server to boot at localhost:80/my-endpoint. It succesfully boots under the 5 second limit
garcom 30 curl localhost:80/my-endpoint && echo 'Our server is now running, lets do something cool!'
Our server is now running, let's do something cool!
echo $?
0

# we are waiting for a server to boot at localhost:80/my-endpoint. It does not succed :(
garcom 30 curl localhost:80/my-endpoint && echo 'Our server is now running, lets do something cool!'
echo $?
1

Contributing

# clone repository
npm i
# Hack and add tests
npm t
# Pull request!

FAQs

Package last updated on 19 Aug 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc