Skip to content

Instantly share code, notes, and snippets.

View apoorv-mishra's full-sized avatar
🏖️

Apoorv Mishra apoorv-mishra

🏖️
View GitHub Profile
@apoorv-mishra
apoorv-mishra / snap.sh
Last active August 13, 2026 17:33
Bash script to quickly bootstrap a minimal express server
#!/usr/bin/env bash
# https://stackoverflow.com/a/677212
if ! command -v jq >/dev/null 2>&1; then
echo "ERR:jq could not be found! Please download from https://jqlang.org/download/"
exit 1
fi
if [ -z "$1" ]; then
echo "ERR:No dirname provided"