1
- # Installing node-oracledb Version 5.5.0-dev
1
+ # Installing node-oracledb Version 5.5.0
2
2
3
3
* Copyright (c) 2015, 2022, Oracle and/or its affiliates.*
4
4
@@ -101,9 +101,9 @@ Alternatively, follow these instructions:
101
101
102
102
- If a pre-built binary is not available, you will need to build from source
103
103
code. Reivew the [ prerequisites] ( #github ) and add
104
- ` https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev /oracledb-src-5.5.0-dev .tgz `
104
+ ` https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz `
105
105
to your ` package.json ` dependencies or run `npm install
106
- https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev /oracledb-src-5.5.0-dev .tgz` .
106
+ https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz` .
107
107
108
108
- Add Oracle Client libraries version 21, 19, 18, 12, or 11.2 to your operating
109
109
system library search path such as ` PATH ` on Windows or ` LD_LIBRARY_PATH ` on
@@ -1123,19 +1123,19 @@ export CC=gcc
1123
1123
```
1124
1124
1125
1125
Locate the [ GitHub tag] [ 40 ] of the desired node-oracledb version, for
1126
- example ` v5.5.0-dev ` , and use the ` npm ` package manager (which is
1126
+ example ` v5.5.0 ` , and use the ` npm ` package manager (which is
1127
1127
included in Node.js) to install it.
1128
1128
1129
1129
If you have the ` git ` utility, you can install with:
1130
1130
1131
1131
```
1132
- npm install oracle/node-oracledb.git#v5.5.0-dev
1132
+ npm install oracle/node-oracledb.git#v5.5.0
1133
1133
```
1134
1134
1135
1135
Otherwise install using:
1136
1136
1137
1137
```
1138
- npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev /oracledb-src-5.5.0-dev .tgz
1138
+ npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz
1139
1139
```
1140
1140
1141
1141
#### 3.5.4 Install the free Oracle Instant Client 'Basic' ZIP file
@@ -1243,19 +1243,19 @@ export MAKE=gmake
1243
1243
```
1244
1244
1245
1245
Locate the [ GitHub tag] [ 40 ] of the desired node-oracledb version, for
1246
- example ` v5.5.0-dev ` , and use the ` npm ` package manager (which is
1246
+ example ` v5.5.0 ` , and use the ` npm ` package manager (which is
1247
1247
included in Node.js) to install it.
1248
1248
1249
1249
If you have the ` git ` utility, you can install with:
1250
1250
1251
1251
```
1252
- npm install oracle/node-oracledb.git#v5.5.0-dev
1252
+ npm install oracle/node-oracledb.git#v5.5.0
1253
1253
```
1254
1254
1255
1255
Otherwise install using:
1256
1256
1257
1257
```
1258
- npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev /oracledb-src-5.5.0-dev .tgz
1258
+ npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz
1259
1259
```
1260
1260
1261
1261
If this fails due to an invalid ` cp -a ` option, you can download the
@@ -1407,7 +1407,7 @@ npm install oracle/node-oracledb#main
1407
1407
```
1408
1408
1409
1409
To install from a tag, replace ` main ` with the tag name like:
1410
- ` oracle/node-oracledb#v5.5.0-dev ` .
1410
+ ` oracle/node-oracledb#v5.5.0 ` .
1411
1411
1412
1412
#### <a name =" sourcepackage " ></a > 3.7.3 Installing from a source package
1413
1413
@@ -1416,14 +1416,14 @@ dependency like:
1416
1416
1417
1417
```
1418
1418
"dependencies": {
1419
- "oracledb": "https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev /oracledb-src-5.5.0-dev .tgz"
1419
+ "oracledb": "https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz"
1420
1420
},
1421
1421
```
1422
1422
1423
1423
Or install with:
1424
1424
1425
1425
```
1426
- npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev /oracledb-src-5.5.0-dev .tgz
1426
+ npm install https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz
1427
1427
```
1428
1428
1429
1429
#### <a name =" nogithubaccess " ></a > 3.7.4 Installing from Oracle's repository
@@ -1459,10 +1459,10 @@ within your company, or it can be used directly from the file system to install
1459
1459
node-oracledb.
1460
1460
1461
1461
- Download
1462
- [ ` oracledb-src-5.5.0-dev .tgz ` ] ( https://github.com/oracle/node-oracledb/releases/download/v5.5.0-dev /oracledb-src-5.5.0-dev .tgz )
1462
+ [ ` oracledb-src-5.5.0.tgz ` ] ( https://github.com/oracle/node-oracledb/releases/download/v5.5.0/oracledb-src-5.5.0.tgz )
1463
1463
from GitHub.
1464
1464
1465
- - Extract the file: ` tar -xzf oracledb-src-5.5.0-dev .tgz `
1465
+ - Extract the file: ` tar -xzf oracledb-src-5.5.0.tgz `
1466
1466
1467
1467
- Change directory: ` cd package `
1468
1468
@@ -1477,7 +1477,7 @@ from GitHub.
1477
1477
architectures.
1478
1478
1479
1479
- Run: ` npm run buildpackage `
1480
- The package ` oracledb-5.5.0-dev .tgz ` is created.
1480
+ The package ` oracledb-5.5.0.tgz ` is created.
1481
1481
1482
1482
This package can be shared or self-hosted, see [ Hosting your own node-oracledb
1483
1483
Packages] ( #selfhost ) .
@@ -1486,12 +1486,12 @@ Packages](#selfhost).
1486
1486
1487
1487
On a machine with access, download the node-oracledb package from [ npm] [ 4 ] , for
1488
1488
example from
1489
- [ ` https://registry.npmjs.com/oracledb/-/oracledb-5.5.0-dev .tgz ` ] ( https://registry.npmjs.com/oracledb/-/oracledb-5.5.0-dev .tgz )
1489
+ [ ` https://registry.npmjs.com/oracledb/-/oracledb-5.5.0.tgz ` ] ( https://registry.npmjs.com/oracledb/-/oracledb-5.5.0.tgz )
1490
1490
1491
1491
This can be transferred to the desired machine and installed, for example with:
1492
1492
1493
1493
```
1494
- npm install your_dir_path/oracledb-5.5.0-dev .tgz
1494
+ npm install your_dir_path/oracledb-5.5.0.tgz
1495
1495
```
1496
1496
1497
1497
If you are using an architecture that does not have pre-supplied binaries then
@@ -1549,25 +1549,25 @@ If you see `MSVCR80.dll` then you need the VS 2005 Redistributable.
1549
1549
You can host node-oracledb packages locally.
1550
1550
1551
1551
Download the node-oracledb package from npm, for example from
1552
- [ ` https://registry.npmjs.com/oracledb/-/oracledb-5.5.0-dev .tgz ` ] ( https://registry.npmjs.com/oracledb/-/oracledb-5.5.0-dev .tgz )
1552
+ [ ` https://registry.npmjs.com/oracledb/-/oracledb-5.5.0.tgz ` ] ( https://registry.npmjs.com/oracledb/-/oracledb-5.5.0.tgz )
1553
1553
Alternatively, if you want to build your own binaries and node-oracledb package,
1554
1554
see [ Creating a node-oracledb package from source code] ( #compilepackage ) .
1555
1555
1556
1556
If you make the package accessible on your local web server, for example at
1557
- www.example.com/oracledb-5.5.0-dev .tgz , then your ` package.json ` would contain:
1557
+ www.example.com/oracledb-5.5.0.tgz , then your ` package.json ` would contain:
1558
1558
1559
1559
```
1560
1560
. . .
1561
1561
"dependencies": {
1562
- "oracledb": "https://www.example.com/oracledb-5.5.0-dev .tgz"
1562
+ "oracledb": "https://www.example.com/oracledb-5.5.0.tgz"
1563
1563
},
1564
1564
. . .
1565
1565
```
1566
1566
1567
1567
Or you would install with:
1568
1568
1569
1569
```
1570
- npm install https://www.example.com/oracledb-5.5.0-dev .tgz
1570
+ npm install https://www.example.com/oracledb-5.5.0.tgz
1571
1571
```
1572
1572
1573
1573
### <a name =" docker " ></a > 3.10 Using node-oracledb in Docker
0 commit comments