# @slide-computer/signer-client

> Authenticate with signers on the Internet Computer

Latest version **3.20.0** (published 2025-09-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install @slide-computer/signer-client
pnpm add @slide-computer/signer-client
yarn add @slide-computer/signer-client
bun add @slide-computer/signer-client
```

## Health

**Score 55/100 (C)** — status: stable.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 3.20.0 |
| Published | 2025-09-25 |
| First published | 2024-03-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 141.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 14 |
| Author | Slide |
| Maintainers | sea-snake |
| Keywords | internet computer, internet-computer, ic, dfinity, signer, wallet, actor, dfx, canister, candid, motoko, javascript, typescript, blockchain, crypto, distributed, api, sdk |

## Links

- npm: https://www.npmjs.com/package/@slide-computer/signer-client
- Repository: https://github.com/slide-computer/signer-js
- Issues: https://github.com/slide-computer/signer-js/issues
- npm.io page: https://npm.io/package/@slide-computer/signer-client

## Alternatives

- [@fortawesome/react-fontawesome](https://npm.io/package/@fortawesome/react-fontawesome.md) — 2.2M weekly downloads
- [roboto-fontface](https://npm.io/package/roboto-fontface.md) — 196.0K weekly downloads
- [@react-native-vector-icons/common](https://npm.io/package/@react-native-vector-icons/common.md) — 150.4K weekly downloads
- [@procore/core-icons](https://npm.io/package/@procore/core-icons.md) — 4.6K weekly downloads
- [@react-md/material-icons](https://npm.io/package/@react-md/material-icons.md) — 1.6K weekly downloads

## Recent versions

- 3.20.0 (latest) — 2025-09-25
- 3.19.0 — 2025-09-25
- 3.18.0 — 2025-09-25
- 3.17.0 — 2025-09-25
- 3.16.0 — 2025-03-17
- 3.15.0 — 2025-03-05
- 3.14.0 — 2025-02-20
- 3.13.0 — 2025-02-20
- 3.12.0 — 2025-02-06
- 3.11.0 — 2024-12-20
- 3.10.3 — 2024-12-17
- 3.10.2 — 2024-12-17
- 3.10.1 — 2024-12-17
- 3.10.0 — 2024-12-17
- 3.9.0 — 2024-12-16
- … 34 more at https://npm.io/package/@slide-computer/signer-client/versions

## README

# @slide-computer/signer-client

Authenticate with signers on the Internet Computer.

---

## Installation

Using SignerClient:

```
npm i --save @slide-computer/signer
```

## In the browser:

```
import { SignerClient } from "@slide-computer/signer-client";
```

To get started with the signerClient, run

```js
const signerClient = await SignerClient.create({signer});
```

The signerClient can log in with

```js
signerClient.login({
  // 7 days in nanoseconds
  maxTimeToLive: BigInt(7 * 24 * 60 * 60 * 1000 * 1000 * 1000),
  onSuccess: async () => {
    handleAuthenticated(signerClient);
  },
});
```

---
_Source: https://npm.io/package/@slide-computer/signer-client · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
