
Product
Introducing Socket MCP for Claude Desktop
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Provides an API to authenticate with Roll20 and retrive session and firebase keys.
npm install --save roll20auth
async/await
const roll20auth = require("roll20auth");
try {
const key = await roll20auth.getSessionKey(username, password);
/*
key.makeCookies();
key.getRackSession();
key.getTempAuth();
key.getCfduid();
*/
const campaignData = await roll20auth.getCampaignData(key, campaignId);
/*
campaignData.getGNTKN();
campaignData.getCampaignStoragePath();
campaignData.getPlayerId();
campaignData.getPlayerAccountId();
*/
} catch(err) {
/* ... */
}
Promises
const roll20auth = require("roll20auth");
roll20auth.getSessionKey(username, password)
.then(key => {
/*
key.makeCookies();
key.getRackSession();
key.getTempAuth();
key.getCfduid();
*/
roll20auth.getCampaignData(key, campaignId)
.then(campaignData => {
/*
campaignData.getGNTKN();
campaignData.getCampaignStoragePath();
campaignData.getPlayerId();
campaignData.getPlayerAccountId();
*/
}).catch(console.log)
}).catch(console.log);
Make sure you have a .env
file in the project root folder with the following data:
ROLL20_USERNAME=""
ROLL20_PASSWORD=""
ROLL20_USERNAME_UNESCAPED=""
ROLL20_PASSWORD_UNESCAPED=""
ROLL20_CAMPAIGN_ID=""
EXPECTED_CAMPAIGN_STORAGE_PATH=""
EXPECTED_PLAYER_ID=""
EXPECTED_PLAYER_ACC_ID="'
Run the tests
npm run test
MIT
FAQs
Provides an API to authenticate with Roll20 and retrive session and firebase keys.
The npm package roll20auth receives a total of 0 weekly downloads. As such, roll20auth popularity was classified as not popular.
We found that roll20auth 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.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.