Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
remix-oauth2-lite
Advanced tools
remix-oauth2-lite is an authentication and authorization library for the Remix web framework. It supports some OAuth2 providers out of the box, and offers a simple API for authorization in a Remix app.
remix-oauth2-lite is an authentication and authorization library for the Remix web framework. It supports some OAuth2 providers out of the box, and offers a simple API for authorization in a Remix app.
① Create session storage and an Auth object:
import { createCookieSessionStorage } from "remix";
import { Auth } from "remix-oauth2-lite";
// ~/lib/auth.server.tsx
const sessionStorage = createCookieSessionStorage({
cookie: {
name: "my-site-session",
sameSite: "lax",
path: "/",
httpOnly: true,
secrets: [SESSION_SECRET],
secure: process.env.NODE_ENV === "production",
},
});
export const auth = new Auth(sessionStorage, [
// providers here...
// See the Providers section below for more details.
]);
② Create a splat route to handle auth endpoints:
// routes/auth/$.tsx
import { LoaderFunction } from "@remix-run/server-runtime";
import { auth } from "~/services/auth.server";
export const loader: LoaderFunction = async (args) => auth.loader(args);
export default function () {
return null;
}
③ Authenticate requests on routes that should be protected:
// routes/someroute.tsx
export let loader: LoaderFunction = async ({ request }) => {
return await auth.authenticated(request, async (user) => {
// Logged out users will be redirect to "/".
return json({ user })
});
};
④ Direct users to provider-specific sign-in/sign-out links:
// Sign in link for myprovider
<Link to="/auth/someprovider/login">Sign In</Link>
// Sign out link for myprovider
<Link to="/auth/someprovider/logout">Sign Out</Link>
Most authentication logic is specific to a provider, each of which is described below.
export const auth = new Auth(sessionStorage, [
new GoogleProvider({
clientId: CLIENT_ID,
clientSecret: CLIENT_SECRET,
scope: "email"
}),
]);
export const auth = new Auth(sessionStorage, [
new OAuth2Provider({
authorizationUrl: `https://some-provider.com/oauth2/authorize`,
tokenUrl: `https://some-provider.com/oauth2/token`,
clientId: CLIENT_ID,
clientSecret: CLIENT_SECRET,
}),
]);
FAQs
remix-oauth2-lite is an authentication and authorization library for the Remix web framework. It supports some OAuth2 providers out of the box, and offers a simple API for authorization in a Remix app.
The npm package remix-oauth2-lite receives a total of 0 weekly downloads. As such, remix-oauth2-lite popularity was classified as not popular.
We found that remix-oauth2-lite 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.