Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@dfinity/auth-client
Advanced tools
JavaScript and TypeScript library to provide a simple integration with an IC Internet Identity
Simple interface to get your web application authenticated with the Internet Identity Service
Visit the Dfinity Forum and SDK Documentation for more information and support building on the Internet Computer.
Additional API Documentation can be found here.
Using AuthClient:
npm i --save @dfinity/auth-client
import * as auth from "@dfinity/auth-client";
or using individual exports:
import { AuthClient } from "@dfinity/auth-client";
To get started with auth client, run
const authClient = await AuthClient.create();
The authClient can log in with
authClient.loginWithRedirect();
It handles redirects, saves your delegation to localStorage, and then sets you up with an identity.
if (location.hash.substring(1).startsWith('access_token')) {
const identity = await authClient.handleRedirectCallback();
}
Then, you can use that identity to make authenticated calls using the @dfinity/agent
Actor
.
const actor = Actor.createActor(idlFactory, {
agent: new HttpAgent({
host: hostUrlEl.value,
identity,
}),
canisterId,
});
Note: depends on @dfinity/agent, @dfinity/authentication, and @dfinity/identity.
FAQs
JavaScript and TypeScript library to provide a simple integration with an IC Internet Identity
The npm package @dfinity/auth-client receives a total of 8,555 weekly downloads. As such, @dfinity/auth-client popularity was classified as popular.
We found that @dfinity/auth-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.