Setup your development environment

Learn how to install and configure the gospace SDKs, set up your environment variables, and prepare your system for building and running API integrations.

Prerequisites

  • Node.js v18 LTS or newer

  • npm v9+

  • A valid gospace API key

1. Install Node.js and npm

Check your version:

node -v
npm -v

If you need to upgrade, download from nodejs.org or use a version manager:

nvm install 18
nvm use 18

2. Create a New Project

mkdir gospace-dev
cd gospace-dev
npm init -y

3. Install the gospace AI SDK

4. Store Your API Key Securely

Create .env:

Load it in your code:

Last updated

Was this helpful?