/venture

A library for using Vercel's API.

Primary LanguageTypeScript


About

venture.js is a module for Node.js that allows you to interact with Vercel's API.

Installation

Use your preferred package manager to install venture.js.

npm install venture.js
pnpm add venture.js
yarn add venture.js

Example

import { VentureClient } from 'venture.js';

// Obtain a Vercel token:
// https://vercel.com/account/tokens
const venture = new VentureClient('TOKEN');

// Get the currently logged in user:
const user = await venture.user.getCurrent();

Documentation

Documentation is available at venture.js.org