@@ -164,8 +164,8 @@ version 2.0.
164
164
- Install a C Compiler such as Xcode, GCC, Visual Studio
165
165
2017, or similar.
166
166
167
- - Run ` npm install oracle/node-oracledb.git#v4.0.0 ` , or add
168
- ` oracle/node-oracledb.git#v4.0.0 ` to your ` package.json `
167
+ - Run ` npm install oracle/node-oracledb.git#v4.0.1 ` , or add
168
+ ` oracle/node-oracledb.git#v4.0.1 ` to your ` package.json `
169
169
dependencies. Substitute your desired [ GitHub tag] [ 40 ] .
170
170
171
171
- Add Oracle 19, 18, 12, or 11.2 client libraries to your operating
@@ -1074,19 +1074,19 @@ export CC=gcc
1074
1074
```
1075
1075
1076
1076
Locate the [ GitHub tag] [ 40 ] of the desired node-oracledb version, for
1077
- example ` v4.0.0 ` , and use the ` npm ` package manager (which is
1077
+ example ` v4.0.1 ` , and use the ` npm ` package manager (which is
1078
1078
included in Node.js) to install it.
1079
1079
1080
1080
If you have the ` git ` utility, you can install with:
1081
1081
1082
1082
```
1083
- npm install oracle/node-oracledb.git#v4.0.0
1083
+ npm install oracle/node-oracledb.git#v4.0.1
1084
1084
```
1085
1085
1086
1086
Otherwise install using:
1087
1087
1088
1088
```
1089
- npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.0 /oracledb-src-4.0.0 .tgz
1089
+ npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.1 /oracledb-src-4.0.1 .tgz
1090
1090
```
1091
1091
1092
1092
#### 3.9.4 Install the free Oracle Instant Client 'Basic' ZIP file
@@ -1194,19 +1194,19 @@ export MAKE=gmake
1194
1194
```
1195
1195
1196
1196
Locate the [ GitHub tag] [ 40 ] of the desired node-oracledb version, for
1197
- example ` v4.0.0 ` , and use the ` npm ` package manager (which is
1197
+ example ` v4.0.1 ` , and use the ` npm ` package manager (which is
1198
1198
included in Node.js) to install it.
1199
1199
1200
1200
If you have the ` git ` utility, you can install with:
1201
1201
1202
1202
```
1203
- npm install oracle/node-oracledb.git#v4.0.0
1203
+ npm install oracle/node-oracledb.git#v4.0.1
1204
1204
```
1205
1205
1206
1206
Otherwise install using:
1207
1207
1208
1208
```
1209
- npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.0 /oracledb-src-4.0.0 .tgz
1209
+ npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.1 /oracledb-src-4.0.1 .tgz
1210
1210
```
1211
1211
1212
1212
#### 3.9.4 Install the free Oracle Instant Client 'Basic' ZIP file
@@ -1309,12 +1309,12 @@ The `git` utility is required for this method.
1309
1309
1310
1310
Build node-oracledb from source code by changing the package specifier
1311
1311
so that ` npm ` downloads from GitHub instead of from npmjs.com. For
1312
- example, to install the code from the GitHub tag 'v4.0.0 ', add
1313
- ` oracle/node-oracledb#v4.0.0 ` to your ` package.json ` dependencies, or
1312
+ example, to install the code from the GitHub tag 'v4.0.1 ', add
1313
+ ` oracle/node-oracledb#v4.0.1 ` to your ` package.json ` dependencies, or
1314
1314
use the command:
1315
1315
1316
1316
```
1317
- npm install oracle/node-oracledb#v4.0.0
1317
+ npm install oracle/node-oracledb#v4.0.1
1318
1318
```
1319
1319
1320
1320
This will download, compile and install node-oracledb.
@@ -1328,7 +1328,7 @@ Users without `git`, or with older versions of `npm` such as included in
1328
1328
Node.js 6, may alternatively need to use pre-bundled source code:
1329
1329
1330
1330
```
1331
- npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.0 /oracledb-src-4.0.0 .tgz
1331
+ npm install https://github.com/oracle/node-oracledb/releases/download/v4.0.1 /oracledb-src-4.0.1 .tgz
1332
1332
```
1333
1333
1334
1334
Note it may take some time before compilation begins due to the slow
@@ -1362,7 +1362,7 @@ installing.
1362
1362
#### <a name =" nogithubaccess " ></a > 3.10.3 Compiling node-oracledb without GitHub Access
1363
1363
1364
1364
Some companies block access to github.com so compiling source code
1365
- from GitHub with ` npm install oracle/node-oracledb.git#v4.0.0 ` will
1365
+ from GitHub with ` npm install oracle/node-oracledb.git#v4.0.1 ` will
1366
1366
fail.
1367
1367
1368
1368
Oracle has a mirror of the GitHub repository source code that can be
@@ -1467,7 +1467,7 @@ See [Node.js for Oracle Linux][46] for details.
1467
1467
You can host node-oracledb packages locally.
1468
1468
1469
1469
Download the node-oracledb package from npm, for example from
1470
- ` https://registry.npmjs.com/oracledb/-/oracledb-4.0.0 .tgz `
1470
+ ` https://registry.npmjs.com/oracledb/-/oracledb-4.0.1 .tgz `
1471
1471
Alternatively, if you want to build your own binaries and
1472
1472
node-oracledb package, the maintainer scripts in
1473
1473
[ /package] ( https://github.com/oracle/node-oracledb/tree/master/package )
@@ -1476,19 +1476,19 @@ can be used. See
1476
1476
for details.
1477
1477
1478
1478
If you make the package accessible on your local web server, for
1479
- example at https://www.example.com/oracledb-4.0.0 .tgz , then your
1479
+ example at https://www.example.com/oracledb-4.0.1 .tgz , then your
1480
1480
install command would be:
1481
1481
1482
1482
```
1483
- npm install https://www.example.com/oracledb-4.0.0 .tgz
1483
+ npm install https://www.example.com/oracledb-4.0.1 .tgz
1484
1484
```
1485
1485
1486
1486
or your ` package.json ` would contain:
1487
1487
1488
1488
```
1489
1489
. . .
1490
1490
"dependencies": {
1491
- "oracledb": "https://www.example.com/oracledb-4.0.0 .tgz"
1491
+ "oracledb": "https://www.example.com/oracledb-4.0.1 .tgz"
1492
1492
},
1493
1493
. . .
1494
1494
```
0 commit comments