
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@shortcut/client
Advanced tools
A library for interacting with the Shortcut REST API.
npm install @shortcut/client
[!IMPORTANT] Our legacy npm organization namespace is
@useshortcut
.While it will still contain copies of all future released package versions, we strongly recommend switching to our primary
@shortcut
organization namespace.
The Shortcut API uses token-based authentication, you will need one to use this library.
To generate an API token, go to https://app.shortcut.com/settings/account/api-tokens.
To make it easier to explore our API, we recommend saving this token as an environment variable in your local dev environment:
export SHORTCUT_API_TOKEN="YOUR API TOKEN HERE"
This will allow you to copy and paste many examples in the documentation to try them out.
[!NOTE] Requests made with a missing or invalid token will get a
401 Unauthorized
response.
[!NOTE] All requests must be made over HTTPS.
[!CAUTION] Tokens provide complete access to your Shortcut account, so keep them secure.
Don’t paste them into your source code, use an environment variable instead.
For security reasons, we will immediately invalidate any tokens we find have been made public.
To see all available exports, take a look at the API documentation or check out the .d.ts
files in this repository.
import { ShortcutClient } from '@shortcut/client';
// const { ShortcutClient } = require('@shortcut/client');
const shortcut = new ShortcutClient('YOUR_API_TOKEN'); // See https://github.com/useshortcut/shortcut-client-js#how-to-get-an-api-token
shortcut.getCurrentMemberInfo().then((response) => console.log(response?.data));
shortcut.listProjects().then((response) => console.log(response?.data));
You can play with it in your web browser with this live playground:
FAQs
A library for interacting with the Shortcut REST API
We found that @shortcut/client demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.