
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@excali-boards/boards-api-client
Advanced tools
A TypeScript client library for interacting with the Boards Room API, the backend behind the collaborative whiteboarding platform. This SDK simplifies API integration for developers building apps on top of Boards infrastructure.
Fully typed API wrapper for the Boards backend
CRUD support for:
Real-time room metadata access and user management
OAuth-based authentication support
Utility endpoints for resolving board references and cleanup
Built-in Axios request handler with date transformation
npm install boards-api-client
# or
pnpm add boards-api-client
import { BoardsManager } from 'boards-api-client';
const client = new BoardsManager('https://your-api-url.com');
const authToken = 'Bearer YOUR_TOKEN_HERE';
const groups = await client.groups.getGroups({ auth: authToken });
console.log(groups);
client.auth.authenticate(...)
— Login a userclient.groups.getAllSorted(...)
— Fetch full hierarchyclient.boards.getBoard(...)
— Fetch single board infoclient.admin.updateUserPermissions(...)
— Update admin permissionsclient.stats.globalStats(...)
— Fetch global app statisticsclient.utils.resolveBoard(...)
— Resolve board ID by nameconst data = await client.boards.getBoard({
auth: token,
groupId: 'grp123',
categoryId: 'cat456',
boardId: 'brd789'
});
console.log(data.board.name);
Clone the repo and install dependencies:
git clone https://github.com/Excali-Boards/boards-api-client.git
cd boards-api-client
pnpm install
This project is licensed under the GNU General Public License v3.0. See LICENSE for details.
FAQs
A simple API client for the Boards API.
The npm package @excali-boards/boards-api-client receives a total of 398 weekly downloads. As such, @excali-boards/boards-api-client popularity was classified as not popular.
We found that @excali-boards/boards-api-client demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.