Skip to content

Instantly share code, notes, and snippets.

View matjahs's full-sized avatar

Matjah Sonneveld matjahs

View GitHub Profile
@barthap
barthap / __mocks__--fs--promises.js
Last active February 25, 2023 23:20
Mocking filesystem in Node.js with `memfs`
// __mocks__/fs/promises.js
const { fs } = require("memfs");
module.exports = fs.promises;
@m-radzikowski
m-radzikowski / script-template.sh
Last active October 9, 2025 00:41
Minimal safe Bash script template - see the article with full description: https://betterdev.blog/minimal-safe-bash-script-template/
#!/usr/bin/env bash
set -Eeuo pipefail
trap cleanup SIGINT SIGTERM ERR EXIT
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)
usage() {
cat <<EOF
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...]