Skip to content

Commit 012728a

Browse files
committed
add github link in nodejs api
1 parent 39e4620 commit 012728a

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
lines changed

src/UserGuide/Master/Tree/API/Programming-NodeJS-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This document will introduce how to generate a native Node.js interface that can
3333

3434
## 2. Generate the Node.js native interface
3535

36-
1. Find the `pom.xml` file in the root directory of the IoTDB source code folder.
36+
1. Find the `pom.xml` file in the root directory of the IoTDB [source code](https://github.com/apache/iotdb) folder.
3737
2. Open the `pom.xml` file and find the following content:
3838
```xml
3939
<execution>
@@ -62,7 +62,7 @@ This document will introduce how to generate a native Node.js interface that can
6262
</configuration>
6363
</execution>
6464
```
65-
4. In the root directory of the IoTDB source code folder,run `mvn clean generate-sources`.
65+
4. In the root directory of the IoTDB [source code](https://github.com/apache/iotdb) folder,run `mvn clean generate-sources`.
6666

6767
This command will automatically delete the files in `iotdb/iotdb-protocol/thrift/target` and `iotdb/iotdb-protocol/thrift-commons/target`, and repopulate the folder with the newly generated files.
6868
The newly generated JavaScript sources will be located in `iotdb/iotdb-protocol/thrift/target/generated-sources-nodejs` in the various modules of the `iotdb-protocol` module.

src/UserGuide/V1.3.x/API/Programming-NodeJS-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This document will introduce how to generate a native Node.js interface that can
3030

3131
## Generate the Node.js native interface
3232

33-
1. Find the `pom.xml` file in the root directory of the IoTDB source code folder.
33+
1. Find the `pom.xml` file in the root directory of the IoTDB [source code](https://github.com/apache/iotdb) folder.
3434
2. Open the `pom.xml` file and find the following content:
3535

3636
```xml
@@ -63,7 +63,7 @@ This document will introduce how to generate a native Node.js interface that can
6363
</execution>
6464
```
6565

66-
4. In the root directory of the IoTDB source code folder,run `mvn clean generate-sources`.
66+
4. In the root directory of the IoTDB [source code](https://github.com/apache/iotdb) folder,run `mvn clean generate-sources`.
6767

6868
This command will automatically delete the files in `iotdb/iotdb-protocol/thrift/target` and `iotdb/iotdb-protocol/thrift-commons/target`, and repopulate the folder with the newly generated files.
6969
The newly generated JavaScript sources will be located in `iotdb/iotdb-protocol/thrift/target/generated-sources-nodejs` in the various modules of the `iotdb-protocol` module.

src/UserGuide/dev-1.3/API/Programming-NodeJS-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This document will introduce how to generate a native Node.js interface that can
3030

3131
## Generate the Node.js native interface
3232

33-
1. Find the `pom.xml` file in the root directory of the IoTDB source code folder.
33+
1. Find the `pom.xml` file in the root directory of the IoTDB [source code](https://github.com/apache/iotdb) folder.
3434
2. Open the `pom.xml` file and find the following content:
3535

3636
```xml
@@ -63,7 +63,7 @@ This document will introduce how to generate a native Node.js interface that can
6363
</execution>
6464
```
6565

66-
4. In the root directory of the IoTDB source code folder,run `mvn clean generate-sources`.
66+
4. In the root directory of the IoTDB [source code](https://github.com/apache/iotdb) folder,run `mvn clean generate-sources`.
6767

6868
This command will automatically delete the files in `iotdb/iotdb-protocol/thrift/target` and `iotdb/iotdb-protocol/thrift-commons/target`, and repopulate the folder with the newly generated files.
6969
The newly generated JavaScript sources will be located in `iotdb/iotdb-protocol/thrift/target/generated-sources-nodejs` in the various modules of the `iotdb-protocol` module.

src/UserGuide/latest/API/Programming-NodeJS-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This document will introduce how to generate a native Node.js interface that can
3333

3434
## 2. Generate the Node.js native interface
3535

36-
1. Find the `pom.xml` file in the root directory of the IoTDB source code folder.
36+
1. Find the `pom.xml` file in the root directory of the IoTDB [source code](https://github.com/apache/iotdb) folder.
3737
2. Open the `pom.xml` file and find the following content:
3838
```xml
3939
<execution>
@@ -62,7 +62,7 @@ This document will introduce how to generate a native Node.js interface that can
6262
</configuration>
6363
</execution>
6464
```
65-
4. In the root directory of the IoTDB source code folder,run `mvn clean generate-sources`.
65+
4. In the root directory of the IoTDB [source code](https://github.com/apache/iotdb) folder,run `mvn clean generate-sources`.
6666

6767
This command will automatically delete the files in `iotdb/iotdb-protocol/thrift/target` and `iotdb/iotdb-protocol/thrift-commons/target`, and repopulate the folder with the newly generated files.
6868
The newly generated JavaScript sources will be located in `iotdb/iotdb-protocol/thrift/target/generated-sources-nodejs` in the various modules of the `iotdb-protocol` module.

src/zh/UserGuide/Master/Tree/API/Programming-NodeJS-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ http://thrift.apache.org/docs/install/
4242

4343
## 2. 编译 thrift 库,生成 Node.js 原生接口
4444

45-
1. 在 IoTDB 源代码文件夹的根目录中找到 pom.xml 文件。
45+
1. 在 IoTDB [源代码](https://github.com/apache/iotdb) 文件夹的根目录中找到 pom.xml 文件。
4646
2. 打开 pom.xml 文件,找到以下内容:
4747

4848
```xml
@@ -78,7 +78,7 @@ http://thrift.apache.org/docs/install/
7878
</execution>
7979
```
8080

81-
4. 在 IoTDB 源代码文件夹的根目录下,运行`mvn clean generate-sources`
81+
4. 在 IoTDB [源代码](https://github.com/apache/iotdb) 文件夹的根目录下,运行`mvn clean generate-sources`
8282

8383
这个指令将自动删除`iotdb/iotdb-protocol/thrift/target``iotdb/iotdb-protocol/thrift-commons/target`中的文件,并使用新生成的 thrift 文件重新填充该文件夹。
8484

src/zh/UserGuide/V1.3.x/API/Programming-NodeJS-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ http://thrift.apache.org/docs/install/
4242

4343
## 编译 thrift 库,生成 Node.js 原生接口
4444

45-
1. 在 IoTDB 源代码文件夹的根目录中找到 pom.xml 文件。
45+
1. 在 IoTDB [源代码](https://github.com/apache/iotdb) 文件夹的根目录中找到 pom.xml 文件。
4646
2. 打开 pom.xml 文件,找到以下内容:
4747

4848
```xml
@@ -78,7 +78,7 @@ http://thrift.apache.org/docs/install/
7878
</execution>
7979
```
8080

81-
4. 在 IoTDB 源代码文件夹的根目录下,运行`mvn clean generate-sources`
81+
4. 在 IoTDB [源代码](https://github.com/apache/iotdb) 文件夹的根目录下,运行`mvn clean generate-sources`
8282

8383
这个指令将自动删除`iotdb/iotdb-protocol/thrift/target``iotdb/iotdb-protocol/thrift-commons/target`中的文件,并使用新生成的 thrift 文件重新填充该文件夹。
8484

src/zh/UserGuide/dev-1.3/API/Programming-NodeJS-Native-API.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ http://thrift.apache.org/docs/install/
4242

4343
## 编译 thrift 库,生成 Node.js 原生接口
4444

45-
1. 在 IoTDB 源代码文件夹的根目录中找到 pom.xml 文件。
45+
46+
1. 在 IoTDB [源代码](https://github.com/apache/iotdb) 文件夹的根目录中找到 pom.xml 文件。
4647
2. 打开 pom.xml 文件,找到以下内容:
4748

4849
```xml
@@ -78,7 +79,7 @@ http://thrift.apache.org/docs/install/
7879
</execution>
7980
```
8081

81-
4. 在 IoTDB 源代码文件夹的根目录下,运行`mvn clean generate-sources`
82+
4. 在 IoTDB [源代码](https://github.com/apache/iotdb) 文件夹的根目录下,运行`mvn clean generate-sources`
8283

8384
这个指令将自动删除`iotdb/iotdb-protocol/thrift/target``iotdb/iotdb-protocol/thrift-commons/target`中的文件,并使用新生成的 thrift 文件重新填充该文件夹。
8485

src/zh/UserGuide/latest/API/Programming-NodeJS-Native-API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ http://thrift.apache.org/docs/install/
4242

4343
## 2. 编译 thrift 库,生成 Node.js 原生接口
4444

45-
1. 在 IoTDB 源代码文件夹的根目录中找到 pom.xml 文件。
45+
1. 在 IoTDB [源代码](https://github.com/apache/iotdb) 文件夹的根目录中找到 pom.xml 文件。
4646
2. 打开 pom.xml 文件,找到以下内容:
4747

4848
```xml
@@ -78,7 +78,7 @@ http://thrift.apache.org/docs/install/
7878
</execution>
7979
```
8080

81-
4. 在 IoTDB 源代码文件夹的根目录下,运行`mvn clean generate-sources`
81+
4. 在 IoTDB [源代码](https://github.com/apache/iotdb) 文件夹的根目录下,运行`mvn clean generate-sources`
8282

8383
这个指令将自动删除`iotdb/iotdb-protocol/thrift/target``iotdb/iotdb-protocol/thrift-commons/target`中的文件,并使用新生成的 thrift 文件重新填充该文件夹。
8484

0 commit comments

Comments
 (0)