List of useful npx (NPM Package Runner) commands.
Using NPX we can execute/run node binaries without the need to install it locally or globally.
| brew install --cask 1password alfred alt-tab appcleaner contraste cyberduck dropbox hyper imageoptim kap keycastr kindle macdown macs-fan-control monitorcontrol numi plug postman responsively runjs sequel-pro skyfonts slack spark spotify telegram the-unarchiver transmission vlc whatsapp zoom | |
| brew install --cask visual-studio-code figma slack | |
| brew install --cask microsoft-teams microsoft-outlook | |
| brew install --cask bartender |
List of useful npx (NPM Package Runner) commands.
Using NPX we can execute/run node binaries without the need to install it locally or globally.
| #!/bin/zsh | |
| # Define the CSV file path. The CSV should contain two columns: filename and URL. | |
| csvFile="images.csv" | |
| # Provide your Tinify API Key. Replace with your actual key. | |
| apiKey="#############################" | |
| # Create directories for original, resized, and compressed images. | |
| mkdir -p ./og |
| #!/bin/bash | |
| ENV_FILE="./.env" | |
| set_heroku_env_vars() { | |
| local app_name=$1 | |
| while IFS= read -r line | |
| do | |
| if [[ -z "$line" || "$line" =~ ^# ]]; then |
| /* eslint-disable @typescript-eslint/no-explicit-any */ | |
| "use client"; | |
| import React, { useState } from "react"; | |
| interface JsonDebuggerProps { | |
| data: any; | |
| } | |
| export const JsonDebugger: React.FC<JsonDebuggerProps> = ({ data }) => { |