Skip to content

Commit 5d59d62

Browse files
committed
Use Node 4.2 LTS in install examples
1 parent 689eebb commit 5d59d62

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

INSTALL.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ The [*node-oracledb*](https://github.com/oracle/node-oracledb) add-on for Node.j
3333
The steps below create a Node.js installation for testing. Adjust the
3434
steps for your environment.
3535

36-
This node-oracledb release has been tested with Node 0.10, 0.12, 4.2
37-
and 5.0 on 64-bit Oracle Linux and Windows. The add-on can also build
36+
This node-oracledb release has been tested with Node 0.10, 0.12, 4.2 LTS
37+
and 5 on 64-bit Oracle Linux and Windows. The add-on can also build
3838
in some Mac OS X, 32-bit Linux, 32-bit Windows, Solaris and AIX
3939
environments, but these architectures have not been fully tested.
4040

@@ -48,7 +48,7 @@ Client 12.1 you can connect to Oracle Database 10.2 or greater. Use
4848
Oracle Client 11.2 if you need to connect to Oracle Database 9.2.
4949

5050
A compiler is required. Use Visual Studio on Windows, gcc on Linux or
51-
Xcode on OS X. When building with Node 4 onwards, it must support
51+
Xcode on OS X. When building with Node 4 onwards, the compiler must support
5252
C++11. Note the default compiler on Oracle Linux 6 and RHEL 6 does
5353
not have the required support. Install a newer compiler or upgrade to
5454
Oracle Linux 7.
@@ -80,7 +80,7 @@ which has Oracle Database 12c pre-installed on Oracle Linux. If you want to in
8080
own database, installing the free
8181
[Oracle Database 11.2 'XE' Express Edition](http://www.oracle.com/technetwork/database/database-technologies/express-edition/overview/index.html)
8282
is quick and easy. Other database editions may be downloaded
83-
[here](http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index-092322.html). If you want to
83+
[here](http://www.oracle.com/technetwork/database/enterprise-edition/downloads/). If you want to
8484
install Oracle Linux yourself, it is free from
8585
[here](http://public-yum.oracle.com/).
8686

@@ -89,18 +89,18 @@ install Oracle Linux yourself, it is free from
8989
### 2.1 Install Node.js
9090

9191
Download the
92-
[Node.js Linux 64-bit binaries](http://nodejs.org/download/) and
92+
[Node.js Linux 64-bit binaries](http://nodejs.org) and
9393
extract the file, for example into `/opt`:
9494

9595
```
9696
cd /opt
97-
tar -zxf node-v0.12.7-linux-x64.tar.gz
97+
tar -Jxf node-v4.2.3-linux-x64.tar.xz
9898
```
9999

100100
Set PATH to include Node.js:
101101

102102
```
103-
export PATH=/opt/node-v0.12.7-linux-x64/bin:$PATH
103+
export PATH=/opt/node-v4.2.3-linux-x64/bin:$PATH
104104
```
105105

106106
### 2.2 Install the free Oracle Instant Client 'Basic' and 'SDK' RPMs
@@ -182,18 +182,18 @@ node select1.js
182182
### 3.1 Install Node.js
183183

184184
Download the
185-
[Node.js Linux 64-bit binaries](http://nodejs.org/download/) and
185+
[Node.js Linux 64-bit binaries](http://nodejs.org/) and
186186
extract the file, for example into `/opt`:
187187

188188
```
189189
cd /opt
190-
tar -zxf node-v0.12.7-linux-x64.tar.gz
190+
tar -Jxf node-v4.2.3-linux-x64.tar.xz
191191
```
192192

193193
Set PATH to include Node.js:
194194

195195
```
196-
export PATH=/opt/node-v0.12.7-linux-x64/bin:$PATH
196+
export PATH=/opt/node-v4.2.3-linux-x64/bin:$PATH
197197
```
198198

199199
### 3.2 Install the free Oracle Instant Client 'Basic' and 'SDK' ZIPs
@@ -309,18 +309,18 @@ Oracle Database.
309309
### 4.1 Install Node.js
310310

311311
Download the
312-
[Node.js Linux 64-bit binaries](http://nodejs.org/download/) and
312+
[Node.js Linux 64-bit binaries](http://nodejs.org/) and
313313
extract the file, for example into `/opt`:
314314

315315
```
316316
cd /opt
317-
tar -zxf node-v0.12.7-linux-x64.tar.gz
317+
tar -zxf node-v4.2.3-linux-x64.tar.gz
318318
```
319319

320320
Set your PATH variable to include Node.js:
321321

322322
```
323-
export PATH=/opt/node-v0.12.7-linux-x64/bin:$PATH
323+
export PATH=/opt/node-v4.2.3-linux-x64/bin:$PATH
324324
```
325325

326326
### 4.2 Install the add-on
@@ -509,8 +509,8 @@ during build and run time. Otherwise use a 64-bit Node.js with a
509509

510510
### 6.2 Install Node.js
511511

512-
Install the 64-bit Node.js MSI (e.g. node-v0.12.7-x64.msi) from
513-
[nodejs.org](http://nodejs.org/download/). Make sure the option to
512+
Install the 64-bit Node.js MSI (e.g. node-v4.2.3-x64.msi) from
513+
[nodejs.org](http://nodejs.org/). Make sure the option to
514514
add the Node and npm directories to the path is selected.
515515

516516
### 6.3 Install the free Oracle Instant Client ZIPs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The node-oracledb add-on for Node.js powers high performance Oracle Database applications.
66

7-
Node-oracledb connects Node.js 0.10, 0.12, 4.2 and 5.0 to Oracle
7+
Node-oracledb connects Node.js 0.10, 0.12, 4.2 LTS and 5 to Oracle
88
Database.
99

1010
This is an open source project maintained by Oracle Corp.

0 commit comments

Comments
 (0)