description | layout | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Initialize the Airstack NodeJS SDK with Airstack API key. This is required to call the Airstack API. |
|
import { init } from "@airstack/node";
init("YOUR_AIRSTACK_API_KEY", "dev");
function init(
key: string,
env?: "dev" | "prod"
): void
Param | Type | Default Value | Description |
---|---|---|---|
key |
string |
Airstack API key | |
env |
dev | prod |
dev |
dev provides verbose logging. prod provides minimal logging, best for production environment. |