Skip to content

Instantly share code, notes, and snippets.

@ugmurthy
ugmurthy / check-modules-compatibility.sh
Created October 31, 2025 10:03
Check compatibility of node or python modules with runtime version of node / python
#!/bin/bash
# Check argument
if [ $# -ne 1 ]; then
echo "Usage: $0 {python|node}"
exit 1
fi
RUNTIME_TYPE="$1"