Skip to content

Instantly share code, notes, and snippets.

View ashutosh887's full-sized avatar
:octocat:
Give them a reason to remember your name!

Ashutosh Jha ashutosh887

:octocat:
Give them a reason to remember your name!
View GitHub Profile
@gokulkrishh
gokulkrishh / useful-npx-commands.md
Last active June 15, 2024 08:40
List of useful npx (Node Package Runner) commands (https://git.io/useful-npx-commands)

NPX (NPM Package Runner) Commands

List of useful npx (NPM Package Runner) commands.

What is NPX?

Using NPX we can execute/run node binaries without the need to install it locally or globally.

Commands

@ygotthilf
ygotthilf / jwtRS256.sh
Last active June 11, 2024 02:25
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub