Skip to content

Files

Cannot retrieve ahead/behind information for this branch.

Folders and files

NameName
Last commit message
Last commit date
Jul 11, 2024
Dec 18, 2023
Sep 4, 2024
Dec 18, 2023
Aug 16, 2023
Dec 18, 2023
Aug 7, 2023
Jan 7, 2025
Jan 7, 2025
Apr 3, 2024
Nov 4, 2024
Aug 2, 2023
Dec 18, 2023
Feb 3, 2025
Feb 3, 2025
Apr 1, 2024
Dec 18, 2023

CloudQuery Plugin SDK for JavaScript

This is the high-level package to use for developing CloudQuery plugins in JavaScript.

Prerequisites

Node.js 20 or higher. Install Node.js from here.

Setup

Install dependencies

npm ci

Build

npm run build

Test

npm test

Start a local memory based plugin server

npm run dev -- serve

Package as a Docker image

npm run dev -- package -m test "v1.0.0" . --dist-dir dist-dir

Formatting and Linting

# This is just to check if the code is formatted
npm run format:check

# Automatically format code
npm run format

# Lint
npm run lint