
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
react-oauth-popup
Advanced tools
OAuth-Popups are some pretty nasty jams that don't fit well in React. This component allows you declare an oauth-popup inline with your components and handles the nasty window navigation for you.
Please note: This component currently only supports OAuth Authorization Code grant type (see: OAuth2 Grant Types OAuth2 Simplified)
NPM:
npm install react-oauth-popup --save
Yarn:
yarn add react-oauth-popup
const onCode = (code, params) => {
console.log("wooooo a code", code);
console.log("alright! the URLSearchParams interface from the popup url", params);
}
const onClose = () => console.log("closed!");
function Comp() {
return (
<OauthPopup
url="http://FriendlyMultiNationalTechConglomerate.com"
onCode={onCode}
onClose={onClose}
>
<div>Click me to open a Popup</div>
</OauthPopup>
);
}
MIT
FAQs
Open a simple popup to authenticate via oAuth
The npm package react-oauth-popup receives a total of 1,818 weekly downloads. As such, react-oauth-popup popularity was classified as popular.
We found that react-oauth-popup demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.