---
title: Vue.js Setup Guide
tags:
- Setup
- JavaScript
- Node
- NPM
- TypeScript
- Vue
- VueJS
featured: true
description: How to include the TelemetryDeck SDK in Your Vue.js App
lead: You have an account, and you have an app ID. Now let's include the TelemetryClient Package in your Vue.js application
order: 300
---
## Prerequisites
- You'll need a TelemetryDeck account. [Sign up for free](https://dashboard.telemetrydeck.com/register?source=websdk) if you don't have one yet.
- You'll need a TelemetryDeck App ID. [Create a new app](https://dashboard.telemetrydeck.com/apps/create) if you don't have one yet.
## Installation
```shell
npm i @peerigon/telemetrydeck-vue --save
```
## Setup
Set up the plugin in your application setup:
```javascript
import TelemetryDeckPlugin from "@peerigon/telemetrydeck-vue";
const app = createApp(App);
app.use(TelemetryDeckPlugin, {
appID: "{your telemetrydeck appID}",
testMode: true, // optional - defaults to false
clientUser: "Guest", // optional - defaults to 'Guest'
});
app.mount("#app");
```
## Basic usage
```ts
Learn how to navigate TelemetryDeck, interpret insights, and use analytics to make data-driven decisions that improve your app and grow your user base.
Start here to get real value from your analytics โ