Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@react-keycloak/razzle
Advanced tools
React Keycloak requires:
keycloak-js
9.0.2 or lateryarn add @react-keycloak/razzle
or
npm install --save @react-keycloak/razzle
version | keycloak-js version |
---|---|
v2.0.0+ | 9.0.2+ |
v1.x | >=8.0.2 <9.0.2 |
N.B: This setup requires you to install
cookie-parser
middleware.
Edit your app server.js
as follow
...
import { ServerPersistors, SSRKeycloakProvider } from '@react-keycloak/razzle'
// Create a function to retrieve Keycloak configuration parameters -- 'see examples/razzle-app'
import { getKeycloakConfig } from './utils'
const assets = require(process.env.RAZZLE_ASSETS_MANIFEST)
const server = express()
server
.disable('x-powered-by')
.use(express.static(process.env.RAZZLE_PUBLIC_DIR))
.use(cookieParser()) // 1. Add cookieParser Express middleware
.get('/*', (req, res) => {
const context = {}
// 2. Create an instance of ServerPersistors.ExpressCookies passing the current request
const cookiePersistor = ServerPersistors.ExpressCookies(req)
// 3. Wrap the App inside SSRKeycloakProvider
const markup = renderToString(
<SSRKeycloakProvider
keycloakConfig={getKeycloakConfig()}
persistor={cookiePersistor}
>
<StaticRouter context={context} location={req.url}>
<App />
</StaticRouter>
</SSRKeycloakProvider>
)
...
})
...
Edit your client.js
as follow
import { ClientPersistors, SSRKeycloakProvider } from '@react-keycloak/razzle'
// Create a function to retrieve Keycloak configuration parameters -- 'see examples/razzle-app'
import { getKeycloakConfig } from './utils'
// 1. Wrap the App inside SSRKeycloakProvider
hydrate(
<SSRKeycloakProvider
keycloakConfig={getKeycloakConfig()}
persistor={ClientPersistors.Cookies}
>
<BrowserRouter>
<App />
</BrowserRouter>
</SSRKeycloakProvider>,
document.getElementById('root')
)
...
When a page requires access to Keycloak
, wrap it inside the withKeycloak
HOC.
...
import { withKeycloak } from '@react-keycloak/razzle'
const Home = ({ keycloak, keycloakInitialized: initialized, isServer }) => {
console.log('Is running on server:', isServer)
console.log('Keycloak is initialized:', initialized)
return (
<div className="Home">
<div className="Home-header">
<img src={logo} className="Home-logo" alt="logo" />
<h2>Welcome to Razzle</h2>
</div>
<p className="Home-intro">
To get started, edit <code>src/App.js</code> or <code>src/Home.js</code>
and save to reload.
</p>
<div>
{!keycloak.authenticated ? (
<button onClick={() => keycloak.login()}>Login</button>
) : (
<button onClick={() => keycloak.logout()}>Logout</button>
)}
</div>
<ul className="Home-resources">
<li>
<a href="https://github.com/jaredpalmer/razzle">Docs</a>
</li>
<li>
<a href="https://github.com/jaredpalmer/razzle/issues">Issues</a>
</li>
<li>
<a href="https://palmer.chat">Community Slack</a>
</li>
</ul>
</div>
)
}
export default withKeycloak(Home)
Alternately, when a component requires access to Keycloak
, you can also use the useKeycloak
Hook.
...
import { useKeycloak } from '@react-keycloak/razzle'
const Home = () => {
const [keycloak, initialized, isServer] = useKeycloak()
console.log('Is running on server:', isServer)
console.log('Keycloak is initialized:', initialized)
return (
<div className="Home">
<div className="Home-header">
<img src={logo} className="Home-logo" alt="logo" />
<h2>Welcome to Razzle</h2>
</div>
<p className="Home-intro">
To get started, edit <code>src/App.js</code> or <code>src/Home.js</code>
and save to reload.
</p>
<div>
{!keycloak.authenticated ? (
<button onClick={() => keycloak.login()}>Login</button>
) : (
<button onClick={() => keycloak.logout()}>Logout</button>
)}
</div>
<ul className="Home-resources">
<li>
<a href="https://github.com/jaredpalmer/razzle">Docs</a>
</li>
<li>
<a href="https://github.com/jaredpalmer/razzle/issues">Issues</a>
</li>
<li>
<a href="https://palmer.chat">Community Slack</a>
</li>
</ul>
</div>
)
}
export default Home
See inside examples/razzle-app
folder of @react-keycloak/react-keycloak-examples
repository for a sample implementation.
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
If you found this project to be helpful, please consider buying me a coffee.
FAQs
Razzle bindings for Keycloak javascript adapter
The npm package @react-keycloak/razzle receives a total of 1 weekly downloads. As such, @react-keycloak/razzle popularity was classified as not popular.
We found that @react-keycloak/razzle 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.