Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

checkyourspammail/venture

Repository files navigation


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