# Make a local npm package usable globally
npm link
## Unlink a package (same as running: npm install -g <pkg_name>)
npm uninstall -g <pkg_name>
# Check if user is logged into npm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
Box, | |
FormControl, | |
FormLabel, | |
Heading, | |
HStack, | |
Icon, | |
NumberInput, | |
NumberInputField, | |
Switch, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { CSVReader } from "react-papaparse"; | |
/** | |
Render the <CSVStreamer /> component defined below instead of the dropzone component. | |
*/ | |
export default class CSVStreamer extends React.Component { | |
render() { | |
return ( | |
<CSVReader |
OpenID Connect is a thin layer on top of OAuth 2.0 that provides authorization (identity) on top of authentication (OAuth 2.0). OIDC introduced the identity token (JWT) which contains info about the user.
Allows users to grant access to resources without sharing the password and with revoke-ability.