
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
react-redux-oauth2-custom
Advanced tools
Redux OAuth Component, server rendering supported
import {reducer} from 'react-redux-oauth2'
combineReducers(
// ... your reducers
oauth: reducer
);
import { actions, reducer, signin, signout } from 'react-redux-oauth'
class YourComponent extends React.Component {
componentWillMount () {
const { dispatch } = this.props
dispatch(actions.config({
client_id: 'YOUR client id',
client_secret: 'YOUR client secret',
url: 'http://localhost:5000/api', // your oauth server root
providers: {
github: '/auth/github' // provider path
}
}))
}
async handlesignin (e) {
const { dispatch } = this.props
e.preventdefault()
await dispatch(actions.signin({
username: this.refs.username.value,
password: this.refs.password.value
}))
}
render () {
const { oauth } = this.props
const Signin = signin({
popup: {}, // popup settings
success () {}, // invoke when signin success
failed () {}, // invoke when signin failed
cancel () {} // invoke when signin cancel
})(props => <button {...props} />)
const Signout = singout()(props => <button {...props} />)
return (
<div>
<form onSubmit={this.handleSignin.bind(this)}>
<input type='text' name='username' ref='username' placeholder='username' />
<input type='text' name='password' ref='password' placeholder='password' />
<button type='submit' disabled={oauth.authenticating}>Signin</button>
</form>
<hr />
<Signin provider='github'>Signin</Signin>
<hr />
<Signout>Signout</Signout>
</div>
)
}
}
For a full runable example see ./demo/src
npm start
http://localhost:3000 for debug
FAQs
react-redux-oauth2 React component
We found that react-redux-oauth2-custom demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.