Skip to content

Commit db21f63

Browse files
committed
A few wording tweaks
1 parent 230ffa8 commit db21f63

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h3 id="prerequisites">Prerequisites</h3>
7979
<hr>
8080
<div class="chapter">
8181
<h2 id="getting-up-and-running">Getting up and running</h2>
82-
<p>In this chapter you&#39;re going to start with the basics, including installing the NativeScript CLI, starting a new project, and getting your first app up and running.</p>
82+
<p>In this chapter you&#39;re going to start with the basics, including installing the NativeScript command-line interface, starting a new project, and getting your first app up and running.</p>
8383
<h3 id="install-nativescript-and-configure-your-environment">Install NativeScript and configure your environment</h3>
8484
<p>The NativeScript CLI has a few system requirements you must have in place before building NativeScript apps. Let’s look at the steps you’ll need to take to get up and running.</p>
8585
<h4 class="exercise-start">
@@ -90,14 +90,14 @@ <h4 class="exercise-start">
9090
<li><strong>Step 1</strong>: Install Node.js.</li>
9191
</ul>
9292
<p>The NativeScript CLI is built on Node.js, and as such you need to have Node.js installed to use NativeScript.</p>
93-
<p>You can check whether you have Node.js installed by opening your terminal or command prompt and executing <code>node --version</code>. If you get an error, head to the <a href="https://nodejs.org/">https://nodejs.org/</a> and download and install the latest “LTS” distribution for your development machine.</p>
93+
<p>You can check whether you have Node.js setup by opening a terminal or command prompt on your development machine and executing <code>node --version</code>. If you get an error, head to the <a href="https://nodejs.org/">https://nodejs.org/</a> and download and install the latest “LTS” distribution for your development machine.</p>
9494
<blockquote>
95-
<p><strong>TIP</strong>: The NativeScript CLI supports a wide variety of Node.js versions, so if you already have Node.js installed you’re likely good to go. If, by chance, you are running an unsupported version, the <code>tns doctor</code> command we’ll run momentarily will flag the problem so you can upgrade.</p>
95+
<p><strong>TIP</strong>: The NativeScript CLI supports a wide variety of Node.js versions, so if you already have Node.js installed you should be good to go. If, by chance, you’re running an unsupported version, the <code>tns doctor</code> command we’ll run momentarily will flag the problem so you can upgrade.</p>
9696
</blockquote>
9797
<ul>
9898
<li><strong>Step 2</strong>: Install the NativeScript CLI</li>
9999
</ul>
100-
<p>Open your terminal or command prompt and execute the following command to install the NativeScript CLI from npm:</p>
100+
<p>Open your terminal or command prompt and execute the following command to install the NativeScript CLI from npm, which is Node.js’ package manager:</p>
101101
<pre><code>npm install -g nativescript
102102
</code></pre><p>After completing the setup you should have two commands available from your terminal or command prompt: <code>tns</code>—which is short for <b>T</b>elerik <b>N</b>ative<b>S</b>cript—and <code>nativescript</code>. The two commands are equivalent, so we&#39;ll stick with the shorter <code>tns</code>.</p>
103103
<p>You can verify the installation was successful by running <code>tns</code> in your terminal. You should see something like this:</p>
@@ -113,7 +113,7 @@ <h4 class="exercise-start">
113113
</code></pre><ul>
114114
<li><strong>Step 3</strong>: Install iOS and Android requirements</li>
115115
</ul>
116-
<p>When you build with NativeScript you’re building truly native iOS and Android apps, and as such, you need to have the system requirements needed to build for each platform you intend to build for on your development machine.</p>
116+
<p>When you build with NativeScript you’re building truly native iOS and Android apps, and as such, you need to have the system requirements for each platform you intend to build for on your development machine.</p>
117117
<p>NativeScript provides two options for installing these requirements—quick setup scripts for developers new to mobile development, and advanced setup scripts for experienced mobile developers, as well as developers that want complete control over the installation process.</p>
118118
<ul>
119119
<li><strong>Step 3—Option A</strong>: Run quick setup scripts</li>

src/chapters/chapter1.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Getting up and running
22

3-
In this chapter you're going to start with the basics, including installing the NativeScript CLI, starting a new project, and getting your first app up and running.
3+
In this chapter you're going to start with the basics, including installing the NativeScript command-line interface, starting a new project, and getting your first app up and running.
44

55
### Install NativeScript and configure your environment
66

@@ -14,13 +14,13 @@ The NativeScript CLI has a few system requirements you must have in place before
1414

1515
The NativeScript CLI is built on Node.js, and as such you need to have Node.js installed to use NativeScript.
1616

17-
You can check whether you have Node.js installed by opening your terminal or command prompt and executing `node --version`. If you get an error, head to the https://nodejs.org/ and download and install the latest “LTS” distribution for your development machine.
17+
You can check whether you have Node.js setup by opening a terminal or command prompt on your development machine and executing `node --version`. If you get an error, head to the https://nodejs.org/ and download and install the latest “LTS” distribution for your development machine.
1818

19-
> **TIP**: The NativeScript CLI supports a wide variety of Node.js versions, so if you already have Node.js installed you’re likely good to go. If, by chance, you are running an unsupported version, the `tns doctor` command we’ll run momentarily will flag the problem so you can upgrade.
19+
> **TIP**: The NativeScript CLI supports a wide variety of Node.js versions, so if you already have Node.js installed you should be good to go. If, by chance, you’re running an unsupported version, the `tns doctor` command we’ll run momentarily will flag the problem so you can upgrade.
2020
2121
* **Step 2**: Install the NativeScript CLI
2222

23-
Open your terminal or command prompt and execute the following command to install the NativeScript CLI from npm:
23+
Open your terminal or command prompt and execute the following command to install the NativeScript CLI from npm, which is Node.js’ package manager:
2424

2525
```
2626
npm install -g nativescript
@@ -44,7 +44,7 @@ $ tns
4444

4545
* **Step 3**: Install iOS and Android requirements
4646

47-
When you build with NativeScript you’re building truly native iOS and Android apps, and as such, you need to have the system requirements needed to build for each platform you intend to build for on your development machine.
47+
When you build with NativeScript you’re building truly native iOS and Android apps, and as such, you need to have the system requirements for each platform you intend to build for on your development machine.
4848

4949
NativeScript provides two options for installing these requirements—quick setup scripts for developers new to mobile development, and advanced setup scripts for experienced mobile developers, as well as developers that want complete control over the installation process.
5050

0 commit comments

Comments
 (0)