Contents - Usage | Install | Tests | License
If you'd like to jump straight in, try one of these or go to the Install section for more (curl, install man page, etc.):
brew tap evnp/notegrid && brew install notegridnpm install -g notegridWork in progress.
Homebrew:
brew tap evnp/notegrid && brew install notegridNPM:
npm install -g notegridCurl:
read -rp $'\n'"Current directories in \$PATH:"$'\n'"$(echo $PATH|sed 's/:/\n/g'|sort)"$'\n\n'"Enter a directory from the list above: " && [[ -z "${REPLY}" ]] && echo "Cancelled (no directory entered)" || ( curl -L -o "${REPLY/\~/$HOME}/notegrid" https://github.com/evnp/notegrid/raw/main/notegrid && chmod +x "${REPLY/\~/$HOME}/notegrid" )notegrid has no external dependencies, but it's good practice to audit code before downnotegrid onto your system to ensure it contains nothing unexpected. Please view the full source code for notegrid here: https://github.com/evnp/notegrid/blob/master/notegrid
If you also want to install notegrid's man page:
read -rp $'\n'"Current directories in \$(manpath):"$'\n'"$(manpath|sed 's/:/\n/g'|sort)"$'\n\n'"Enter a directory from the list above: " && [[ -z "${REPLY}" ]] && echo "Cancelled (no directory entered)" || curl -L -o "${REPLY/\~/$HOME}/man1/notegrid.1" https://github.com/evnp/notegrid/raw/main/man/notegrid.1Verify installation:
notegrid -v
==> notegrid 2.0.2
brew test notegrid
==> Testing notegrid
==> /opt/homebrew/Cellar/notegrid/2.0.2/bin/notegrid test --print 1234 hello worldRun once:
npm install
npm testUse fswatch to re-run tests on file changes:
brew install fswatch
npm install
npm run testwNon-OSX: replace brew install fswatch with package manager of choice (see fswatch docs)