Skip to content

Commit 695f0d0

Browse files
committed
style: spell npm with lower case
1 parent 657da03 commit 695f0d0

File tree

13 files changed

+34
-34
lines changed

13 files changed

+34
-34
lines changed

sources/academy/glossary/tools/apify_cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ The [Apify CLI](/cli) helps you create, develop, build and run Apify actors, and
1515

1616
## Installing {#installing}
1717

18-
To install the Apfiy CLI, you'll first need NPM, which comes preinstalled with Node.js. If you haven't yet installed Node, learn how to do that [here](../../webscraping/web_scraping_for_beginners/data_extraction/computer_preparation.md). Additionally, make sure you've got an Apify account, as you will need to log in to the CLI to gain access to its full potential.
18+
To install the Apfiy CLI, you'll first need npm, which comes preinstalled with Node.js. If you haven't yet installed Node, learn how to do that [here](../../webscraping/web_scraping_for_beginners/data_extraction/computer_preparation.md). Additionally, make sure you've got an Apify account, as you will need to log in to the CLI to gain access to its full potential.
1919

2020
Open up a terminal instance and run the following command:
2121

2222
```shell
2323
npm i -g apify-cli
2424
```
2525

26-
This will install the CLI via NPM.
26+
This will install the CLI via npm.
2727

2828
## Logging in {#logging-in}
2929

sources/academy/platform/deploying_your_code/docker_file.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,22 @@ Here's the Dockerfile for our Node.js example project's actor:
4949
FROM apify/actor-node:16
5050

5151
# Second, copy just package.json and package-lock.json since they are the only files
52-
# that affect NPM install in the next step
52+
# that affect npm install in the next step
5353
COPY package*.json ./
5454

55-
# Install NPM packages, skip optional and development dependencies to keep the
55+
# Install npm packages, skip optional and development dependencies to keep the
5656
# image small. Avoid logging too much and print the dependency tree for debugging
5757
RUN npm --quiet set progress=false \
5858
&& npm install --only=prod --no-optional \
59-
&& echo "Installed NPM packages:" \
59+
&& echo "Installed npm packages:" \
6060
&& (npm list --all || true) \
6161
&& echo "Node.js version:" \
6262
&& node --version \
63-
&& echo "NPM version:" \
63+
&& echo "npm version:" \
6464
&& npm --version
6565

6666
# Next, copy the remaining files and directories with the source code.
67-
# Since we do this after NPM install, quick build will be really fast
67+
# Since we do this after npm install, quick build will be really fast
6868
# for simple source file changes.
6969
COPY . ./
7070

sources/academy/platform/expert_scraping_with_apify/apify_api_and_client.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ You can use one of the two main ways to programmatically interact with the Apify
1818
## Learning 🧠 {#learning}
1919

2020
- Scroll through the [Apify API docs](/api/v2) (there's a whole lot there, so you're not expected to memorize everything).
21-
- Read about the Apify client in [Apify's docs](/api/client/js). It can also be seen on [GitHub](https://github.com/apify/apify-client-js) and [NPM](https://www.npmjs.com/package/apify-client).
21+
- Read about the Apify client in [Apify's docs](/api/client/js). It can also be seen on [GitHub](https://github.com/apify/apify-client-js) and [npm](https://www.npmjs.com/package/apify-client).
2222
- Learn about the [`Actor.newClient()`](/sdk/js/reference/class/Actor#newClient) function in the Apify SDK.
2323
- Skim through [this article](https://help.apify.com/en/articles/2868670-how-to-pass-data-from-web-scraper-to-another-actor) about API integration (this article is old; however, still relevant).
2424

2525
## Knowledge check 📝 {#quiz}
2626

2727
1. What is the relationship between the Apify API and the Apify client? Are there any significant differences?
2828
2. How do you pass input when running an actor or task via API?
29-
3. Do you need to install the `apify-client` NPM package when already using the `apify` package?
29+
3. Do you need to install the `apify-client` npm package when already using the `apify` package?
3030

3131
## Our task
3232

sources/academy/platform/expert_scraping_with_apify/solutions/using_api_and_client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ The one main difference is that the Apify client automatically uses [**exponenti
236236

237237
**A:** The input should be passed into the **body** of the request when running an actor/task via API.
238238

239-
**Q: Do you need to install the `apify-client` NPM package when already using the `apify` package?**
239+
**Q: Do you need to install the `apify-client` npm package when already using the `apify` package?**
240240

241241
**A:** No. The Apify client is available right in the SDK with the `Actor.newClient()` function.
242242

sources/academy/platform/getting_started/apify_client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can access `apify-client` examples in the Console Actor detail page. Click t
2626

2727
## Installing and importing {#installing-and-importing}
2828

29-
If you are going to use the client in Node.js, use this command within one of your projects to install the package through NPM:
29+
If you are going to use the client in Node.js, use this command within one of your projects to install the package through npm:
3030

3131
```shell
3232
npm install apify-client

sources/academy/webscraping/anti_scraping/mitigation/generating_fingerprints.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: Generating fingerprints
3-
description: Learn how to use two super handy NPM libraries to easily generate fingerprints and inject them into a Playwright or Puppeteer page.
3+
description: Learn how to use two super handy npm libraries to easily generate fingerprints and inject them into a Playwright or Puppeteer page.
44
sidebar_position: 3
55
slug: /anti-scraping/mitigation/generating-fingerprints
66
---
77

88
# Generating fingerprints {#generating-fingerprints}
99

10-
**Learn how to use two super handy NPM libraries to easily generate fingerprints and inject them into a Playwright or Puppeteer page.**
10+
**Learn how to use two super handy npm libraries to easily generate fingerprints and inject them into a Playwright or Puppeteer page.**
1111

1212
---
1313

sources/academy/webscraping/anti_scraping/mitigation/using_proxies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,4 @@ Notice that we didn't provide it a list of proxy URLs. This is because the `SHAD
140140

141141
## Next up {#next}
142142

143-
[Next up](./generating_fingerprints.md), we'll be checking out how to use two NPM packages to generate and inject [browser fingerprints](../techniques/fingerprinting.md).
143+
[Next up](./generating_fingerprints.md), we'll be checking out how to use two npm packages to generate and inject [browser fingerprints](../techniques/fingerprinting.md).

sources/academy/webscraping/api_scraping/graphql_scraping/custom_queries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To make sure we're all on the same page, we're going to set up the project toget
3636
npm init -y && npm install graphql-tag puppeteer got-scraping
3737
```
3838

39-
This command will first initialize the project with NPM, then will install the `puppeteer`, `graphql-tag`, and `got-scraping` packages, which we will need in this lesson.
39+
This command will first initialize the project with npm, then will install the `puppeteer`, `graphql-tag`, and `got-scraping` packages, which we will need in this lesson.
4040

4141
Finally, create a file called **index.js**. This is the file we will be working in for the rest of the lesson.
4242

@@ -113,7 +113,7 @@ Also in the previous lesson, we learned that the **media** type is dependent on
113113
query SearchQuery($query: String!, $max_age: Int!) {
114114
organization {
115115
media(query: $query, max_age: $max_age , first: 1000) {
116-
116+
117117
}
118118
}
119119
}

sources/academy/webscraping/switching_to_typescript/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ slug: /switching-to-typescript/installation
1111

1212
---
1313

14-
> In order to install and use TypeScript, you'll first need to make sure you've installed [Node.js](https://nodejs.org). Node.js comes with a package manager called [NPM](https://npmjs.com), through which TypeScript can be installed.
14+
> In order to install and use TypeScript, you'll first need to make sure you've installed [Node.js](https://nodejs.org). Node.js comes with a package manager called [npm](https://npmjs.com), through which TypeScript can be installed.
1515
1616
To install TypeScript globally on your machine, run the following command in your terminal:
1717

sources/academy/webscraping/web_scraping_for_beginners/crawling/pro_scraping.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ Crawlee and its resources can be found in various different places:
4343

4444
1. [Official Crawlee documentation](https://crawlee.dev/)
4545
2. [Crawlee GitHub repository (source code, issues)](https://github.com/apify/crawlee)
46-
3. [Crawlee on NPM](https://www.npmjs.com/package/crawlee)
46+
3. [Crawlee on npm](https://www.npmjs.com/package/crawlee)
4747

4848
## Install Crawlee {#crawlee-installation}
4949

50-
To use Crawlee, we have to install it from NPM. Let's add it to our project from the previous lessons by executing this command in your project's folder.
50+
To use Crawlee, we have to install it from npm. Let's add it to our project from the previous lessons by executing this command in your project's folder.
5151

5252
```shell
5353
npm install crawlee

0 commit comments

Comments
 (0)