
Product
A Fresh Look for the Socket Dashboard
We’ve redesigned the Socket dashboard with simpler navigation, less visual clutter, and a cleaner UI that highlights what really matters.
rowt-console-sdk
Advanced tools
SDK for interacting with Rowt Server API from a client-side application.
A TypeScript SDK for interacting with the Rowt Server API.
npm install rowt-console-sdk
import RowtConsole from "rowt-console-sdk";
// Or alternatively, import specific types
import { RowtConsole, RowtProject, RowtUser } from "rowt-console-sdk";
// Initialize the SDK with your base URL
const rowtConsole = new RowtConsole("https://api.rowt.io");
// Login and get a user instance
async function login() {
try {
const user = await rowtConsole.login({
email: "user@example.com",
password: "password",
});
console.log("Logged in as:", user.email);
// Get user projects
const projects = await rowtConsole.getUserProjects();
console.log("User projects:", projects);
} catch (error) {
console.error("Login failed:", error);
}
}
login();
The SDK provides the following methods:
login(credentials)
- Authenticate with the Rowt Console APIlogout()
- Log out and clear tokensvalidateUser(credentials)
- Validate user credentialscreateUser(email, password)
- Create a new usergetProfile()
- Get the current user's profilegetCurrentUser()
- Get the current userupdatePassword(updatePasswordDTO)
- Update a user's passwordgetLinksByProjectId(projectId, includeInteractions)
- Get links for a projectgetProjectById(projectId, options)
- Get a project by IDgetUserProjects()
- Get all projects for the current userupdateProject(project)
- Update a projectcreateProject(project)
- Create a new projectregenerateApiKey(projectId)
- Regenerate an API key for a projectgetUserUsage(userId)
- Get usage statistics for a usergetUserTier(userId)
- Get tier information for a userMIT
FAQs
SDK for interacting with Rowt Server API from a client-side application.
The npm package rowt-console-sdk receives a total of 10 weekly downloads. As such, rowt-console-sdk popularity was classified as not popular.
We found that rowt-console-sdk 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.
Product
We’ve redesigned the Socket dashboard with simpler navigation, less visual clutter, and a cleaner UI that highlights what really matters.
Industry Insights
Terry O’Daniel, Head of Security at Amplitude, shares insights on building high-impact security teams, aligning with engineering, and why AI gives defenders a fighting chance.
Security News
MCP spec updated with structured tool output, stronger OAuth 2.1 security, resource indicators, and protocol cleanups for safer, more reliable AI workflows.