Skip to content

Commit 32c83ff

Browse files
committed
Change NPM to npm
1 parent be1cea3 commit 32c83ff

6 files changed

+10
-10
lines changed

articles/azure-maps/how-to-dev-guide-js-sdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure Maps
44
description: How to develop applications that incorporate Azure Maps using the JavaScript SDK Developers Guide.
55
author: stevemunk
66
ms.author: v-munksteve
7-
ms.date: 11/07/2021
7+
ms.date: 11/15/2021
88
ms.topic: how-to
99
ms.service: azure-maps
1010
services: azure-maps
@@ -48,16 +48,16 @@ mapsDemo
4848
+-- search.js
4949
```
5050

51-
### Azure Maps search service
51+
### Azure Maps services
5252

53-
| Service Name  | NPM package  | Samples  |
53+
| Service Name  | npm packages | Samples  |
5454
|---------------|-------------------------|--------------|
55-
| [Search][search readme] | [Azure.Maps.Search][search package] | [search samples][search sample] |
55+
| [Search][search readme] | [@azure/maps-search][search package] | [search samples][search sample] |
5656
| [Route][js route readme] | [@azure-rest/maps-route][js route package] | [route samples][js route sample] |
5757

5858
## Create a Node.js project
5959

60-
The example below creates a new directory then a Node.js program named _mapsDemo_ using NPM:
60+
The example below creates a new directory then a Node.js program named _mapsDemo_ using npm:
6161

6262
```powershell
6363
mkdir mapsDemo

articles/azure-maps/how-to-use-best-practices-for-routing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,4 +283,4 @@ To learn more, please see:
283283
> [Show route on the map](./map-route.md)
284284
285285
> [!div class="nextstepaction"]
286-
> [Azure Maps NPM Package](https://www.npmjs.com/package/azure-maps-rest )
286+
> [Azure Maps npm Package](https://www.npmjs.com/package/azure-maps-rest )

articles/azure-maps/migrate-from-bing-maps-web-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ See also the [Azure Maps Glossary](./glossary.md) for an in-depth list of termin
103103

104104
## Web SDK side-by-side examples
105105

106-
The following is a collection of code samples for each platform that cover common use cases to help you migrate your web application from Bing Maps V8 JavaScript SDK to the Azure Maps Web SDK. Code samples related to web applications are provided in JavaScript; however, Azure Maps also provides TypeScript definitions as an additional option through an [NPM module](./how-to-use-map-control.md).
106+
The following is a collection of code samples for each platform that cover common use cases to help you migrate your web application from Bing Maps V8 JavaScript SDK to the Azure Maps Web SDK. Code samples related to web applications are provided in JavaScript; however, Azure Maps also provides TypeScript definitions as an additional option through an [npm module](./how-to-use-map-control.md).
107107

108108
**Topics**
109109

articles/azure-maps/migrate-from-google-maps-web-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ In addition to this API, Azure Maps provides many time zone APIs. These APIs con
473473

474474
Azure Maps provides client libraries for the following programming languages:
475475

476-
* JavaScript, TypeScript, Node.js – [documentation](how-to-use-services-module.md) \| [NPM package](https://www.npmjs.com/package/azure-maps-rest)
476+
* JavaScript, TypeScript, Node.js – [documentation](how-to-use-services-module.md) \| [npm package](https://www.npmjs.com/package/azure-maps-rest)
477477

478478
These Open-source client libraries are for other programming languages:
479479

articles/azure-maps/rest-sdk-developer-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Azure Maps Python SDK supports Python version 3.7 or later. Check the [Azure S
4646

4747
Azure Maps JavaScript/TypeScript SDK supports LTS versions of [Node.js][Node.js] including versions in Active status and Maintenance status.
4848

49-
| Service Name  | npm package  | Samples  |
49+
| Service Name  | npm packages | Samples  |
5050
|---------------|-------------------------|--------------|
5151
| [Search][js search readme] | [@azure/maps-search][js search package] | [search samples][js search sample] |
5252
| [Route][js route readme] | [@azure-rest/maps-route][js route package] | [route samples][js route sample] |

articles/azure-maps/web-sdk-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ For security best practices, see [Authentication and authorization best practice
2626

2727
The Azure Maps SDKs go through regular security testing along with any external dependency libraries that may be used by the SDKs. Any known security issue is fixed in a timely manner and released to production. If your application points to the latest major version of the hosted version of the Azure Maps Web SDK, it will automatically receive all minor version updates that will include security related fixes.
2828

29-
If self-hosting the Azure Maps Web SDK via the NPM module, be sure to use the caret (^) symbol to in combination with the Azure Maps NPM package version number in your `package.json` file so that it will always point to the latest minor version.
29+
If self-hosting the Azure Maps Web SDK via the npm module, be sure to use the caret (^) symbol to in combination with the Azure Maps NPM package version number in your `package.json` file so that it will always point to the latest minor version.
3030

3131
```json
3232
"dependencies": {

0 commit comments

Comments
 (0)