# @microsoft/applicationinsights-web-snippet

> Microsoft Application Insights Web Snippet

Latest version **1.2.3** (published 2025-11-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install @microsoft/applicationinsights-web-snippet
pnpm add @microsoft/applicationinsights-web-snippet
yarn add @microsoft/applicationinsights-web-snippet
bun add @microsoft/applicationinsights-web-snippet
```

## Health

**Score 65/100 (B)** — status: stable.

Positive: has types; esm support; no vulnerabilities; high maintenance score; high quality score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 1.2.3 |
| Published | 2025-11-11 |
| First published | 2022-05-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 186.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 685 |
| Maintainers | msftapplicationinsights, microsoft1es |

## Links

- npm: https://www.npmjs.com/package/@microsoft/applicationinsights-web-snippet
- Repository: https://github.com/microsoft/ApplicationInsights-JS.git#main
- Homepage: https://github.com/microsoft/ApplicationInsights-JS/tree/main#readme
- Issues: https://github.com/microsoft/ApplicationInsights-JS/issues
- npm.io page: https://npm.io/package/@microsoft/applicationinsights-web-snippet

## Recent versions

- 1.2.3 (latest) — 2025-11-11
- 1.2.2 — 2025-06-19
- 1.2.1 — 2024-07-10
- 1.2.0 — 2024-06-22
- 1.1.2 — 2024-03-02
- 1.1.1 — 2024-02-17
- 1.1.0 — 2024-02-15
- 1.0.1 — 2022-05-23
- 1.0.0 — 2022-05-10

## README

# Microsoft Application Insights JavaScript SDK - Web Snippet

[![GitHub Workflow Status (main)](https://img.shields.io/github/actions/workflow/status/microsoft/ApplicationInsights-JS/ci.yml?branch=main)](https://github.com/microsoft/ApplicationInsights-JS/tree/main)
[![Build Status](https://dev.azure.com/mseng/AppInsights/_apis/build/status%2FAppInsights%20-%20DevTools%2F1DS%20JavaScript%20SDK%20web%20SKU%20(main%3B%20master)?branchName=main)](https://dev.azure.com/mseng/AppInsights/_build/latest?definitionId=8184&branchName=main)
[![npm version](https://badge.fury.io/js/%40microsoft%2Fapplicationinsights-web-snippet.svg)](https://badge.fury.io/js/%40microsoft%2Fapplicationinsights-web-snippet)

Web Snippet for the Application Insights Javascript SDK

This project exists to publish latest Application Insights Javascript Web Snippet.

## Basic Usage

Add the Application Insights Web Snippet to your app's dependencies and package.json.
```
npm i @microsoft/applicationinsights-web-snippet
```

### Pass in Key via Function (available since v1.1.0)
Import the helper function from the package to easily get the snippet
```
import { getSdkLoaderScript } from "@microsoft/applicationinsights-web-snippet";
```

Configure the snippet with your connectionString or other customerized field:
```
let config = {connectionString: "InstrumentationKey=xxx", name: "myAppInsights"}; 
// or let config = {instrumentationKey: key, sri: true};
let theSnippet = getSdkLoaderScript(config);
```

### Multiple Snippet Run Simutinously (available since v1.2.0)
Configure two snippets with different name.
```
let firstConfig = {connectionString: "InstrumentationKey=xxx", name: "firstAppInsights"}; 
let firstSnippet = getSdkLoaderScript(firstConfig);
let secondConfig = {connectionString: "InstrumentationKey=xxx", name: "secondAppInsights"}; 
let secondSnippet = getSdkLoaderScript(secondConfig);
```

### Snippet Run With Integrity Check and Minified Loading Time (available since v1.2.0)
Configure the snippet with sri enabled.
```
let config = {connectionString: "InstrumentationKey=xxx", sri: true};
```

More details on web snippet, see [Web Snippet](https://github.com/microsoft/ApplicationInsights-JS#snippet-setup-ignore-if-using-npm-setup).

### Trusted Types Support (available since v1.2.2)
For restrictions like require-trusted-types-for 'script', check [url policy check](./trustedTypeSupport.md)
For restrictions like script-src 'self' ..., check [add nounce when inject script]()

## Build
```
npm install -g grunt-cli
npm install
npm run build --silent
```

## Contributing

This project welcomes contributions and suggestions. Most contributions require you to
agree to a Contributor License Agreement (CLA) declaring that you have the right to,
and actually do, grant us the rights to use your contribution. For details, visit
https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need
to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the
instructions provided by the bot. You will only need to do this once across all repositories using our CLA.

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.

## Data Collection

As this SDK is designed to enable applications to perform data collection which is sent to the Microsoft collection endpoints the following is required to identify our privacy statement.

The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.

## Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft’s Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.

## License

[MIT](LICENSE)

---
_Source: https://npm.io/package/@microsoft/applicationinsights-web-snippet · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
