Skip to content

Commit 0c6d64b

Browse files
authored
fix links and newlines in getting started (nodejs#165)
1 parent 4a1e9b5 commit 0c6d64b

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

website/docs/getting-started/first.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ prev: getting-started.tools
55
next: getting-started.objectwrap
66
---
77

8-
Before you start, make sure you've got all the necessary [prerequisites](prerequisites.html) and [tools](tools.html) installed.
8+
Before you start, make sure you've got all the necessary [prerequisites](prerequisites) and [tools](tools) installed.
99

1010
As you select where to begin, you should be aware that N-API operates at two levels which we can think of as the "C level" and the "C++ level".
1111

website/docs/getting-started/helloworld.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: Hello, world!
99

1010
This tutorial will walk you through the process of creating a simple N-API module from scratch. It requires no dependencies beyond Node and npm itself.
1111

12-
Before you start, make sure you've got all the necessary [prerequisites](prerequisites.html) and [tools](tools.html) installed.
12+
Before you start, make sure you've got all the necessary [prerequisites](prerequisites) and [tools](tools) installed.
1313

1414
As you select where to begin, you should be aware that N-API operates at two levels which we can think of as the "C level" and the "C++ level".
1515

website/docs/getting-started/migration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This tutorial uses the conversion tool supplied with N-API to give you a head st
1010

1111
To keep things somewhat constrained, this tutorial uses [node-microtime](https://github.com/wadey/node-microtime) which is a simple NAN-based native add-on. This add-on makes system calls to determine the current time to microsecond resolution if supported by the operating system.
1212

13-
Before you start, make sure you've got all the necessary [prerequisites](prerequisites.html) and [tools](tools.html) installed.
13+
Before you start, make sure you've got all the necessary [prerequisites](prerequisites) and [tools](tools) installed.
1414

1515
> N-API has been in public release and active development starting with Node 8.0.0. Since then, it's undergone a number of refinements. This tutorial has been tested with Node 10.1.0 and is known to fail with older versions of Node. You can determine the version of Node you're running with the command `node -v`.
1616
@@ -177,4 +177,4 @@ There are number of good resources to help you better understand N-API as you mi
177177

178178
[node-addon-api Test Code](https://github.com/nodejs/node-addon-api/tree/master/test)
179179

180-
Each of these resources is maintained by the N-API Team.
180+
Each of these resources is maintained by the N-API Team.

website/docs/getting-started/objectwrap.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ prev: getting-started.first
55
next: getting-started.migration
66
---
77

8-
This tutorial is an alternative to [A first project](./first.html) that generates a more complex project. Instead of generating a simple function binding, this project demonstrates how to create a JavaScript object from a C++ object.
8+
This tutorial is an alternative to [A first project](first) that generates a more complex project. Instead of generating a simple function binding, this project demonstrates how to create a JavaScript object from a C++ object.
99

10-
Before you start, make sure you've got all the necessary [prerequisites](prerequisites.html) and [tools](tools.html) installed.
10+
Before you start, make sure you've got all the necessary [prerequisites](prerequisites) and [tools](tools) installed.
1111

1212
As you select where to begin, you should be aware that N-API operates at two levels which we can think of as the "C level" and the "C++ level".
1313

website/docs/getting-started/prerequisites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ For your own projects, it will be necessary to have an understanding of the C/C+
1212

1313
## Command line tools
1414

15-
Many of the tools used to develop N-API modules are run from the command line. So at least a passing familiarity and confidence with your command line tool is essential. IDEs, as described [here](tools.html#Other-tools) can help. But they also rely in the command line.
15+
Many of the tools used to develop N-API modules are run from the command line. So at least a passing familiarity and confidence with your command line tool is essential. IDEs, as described [here](tools#other-tools) can help. But they also rely in the command line.

website/docs/getting-started/tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ You'll need your favorite shell program which typically comes pre-installed on m
9797

9898
And you'll need your favorite code editor.
9999

100-
There are also powerful IDEs (Integrated Development Environments) that are popular in the developer community. Among these are [Visual Studio Code](https://code.visualstudio.com) and [WebStorm](https://www.jetbrains.com/webstorm/). Depending upon your level of involvement with this work, these tools can quickly pay for themselves in increased productivity.
100+
There are also powerful IDEs (Integrated Development Environments) that are popular in the developer community. Among these are [Visual Studio Code](https://code.visualstudio.com) and [WebStorm](https://www.jetbrains.com/webstorm/). Depending upon your level of involvement with this work, these tools can quickly pay for themselves in increased productivity.

0 commit comments

Comments
 (0)