Skip to content

Instantly share code, notes, and snippets.

View invalidred's full-sized avatar

abdul khan invalidred

View GitHub Profile

React && Firebase Workshop

Contact Information

Prequisite Setup

  • A recent version of Node.js
  • npm install -g create-react-app
@invalidred
invalidred / create_jwt.sh
Created December 19, 2023 14:32 — forked from shu-yusa/create_jwt.sh
Generate private and public keys, and create JWT and JWKs
#!/bin/sh
## Requires openssl, nodejs, jq
header='
{
"kid": "12345",
"alg": "RS256"
}'
payload='
{
"iss": "https://example.com",