Installing the Taxo SDK
Learn how to install Taxo’s JavaScript SDK so you can embed your AI accountant into any web project.
To get started with Taxo in your web app, you’ll first need to install our JavaScript SDK. We recommend using pnpm—but feel free to use npm or yarn if you prefer.
Install pnpm (if you don’t have it yet):
npm install -g pnpm
Add the Taxo SDK to your project:
pnpm add @taxo/sdk
That command pulls in the Taxo client and all its dependencies. Once it’s finished, you’re ready to import and initialize Taxo in your code:
import Taxo from '@taxo/sdk'; const taxo = new Taxo({ apiKey: process.env.TAXO_API_KEY, });
Now you can call Taxo directly from your frontend to create invoices, log receipts, fetch tax tips, and more—right from your app.