Skip to content

Files

Latest commit

 

History

History

sdk

@pipedream/sdk

TypeScript SDK for Pipedream. See the docs for usage instructions.

Install

npm i @pipedream/sdk

Quickstart

The quickstart is the easiest way to get started with the SDK and Pipedream Connect.

Usage

See the SDK docs for full usage instructions and examples for each method.

Example App

Clone and run the example app to get started.

Importing the Client

You can import the SDK from the root package name, and it will automatically load the appropriate code depending on the environment (e.g. Node.js server, browser, etc.).

CommonJS Modules

const { createClient } = require("@pipedream/sdk");

ES Modules

import { createClient } from "@pipedream/sdk";

Browser

import { createClient } from "@pipedream/sdk";