I’m a computer janitor that sometimes streams trying to learn dev https://www.twitch.tv/destide

  • 329 Posts
  • 2.92K Comments
Joined 3 年前
cake
Cake day: 2023年7月4日

help-circle
  • sudo {package-manager} remove npm nodejs sudo {package-manager} purge npm nodejs

    npm: sudo tee /usr/local/bin/npm >/dev/null <<‘EOF’ #!/bin/sh echo “npm is blocked on this system.” exit 1 EOF

    sudo chmod 755 /usr/local/bin/npm

    npx: sudo tee /usr/local/bin/npx >/dev/null <<‘EOF’ #!/bin/sh echo “npx is blocked on this system.” exit 1 EOF

    sudo chmod 755 /usr/local/bin/npx

    Might break somethings but that’s a part of boycotting something I guess.