@@ -41,7 +41,7 @@ limitations under the License.
41
41
- 3.11 [ Node-oracledb Installation Without Internet Access] ( #offline )
42
42
- 3.11.1 [ Copying node-oracledb Binaries on Windows] ( #winbins )
43
43
- 3.12 [ Installing Node.js and Node-oracledb RPMs from yum.oracle.com] ( #instnoderpms )
44
- - 3.13 [ Hosting your own node-oracledb Packages] ( #selfhost )
44
+ - 3.13 [ Building and Hosting your own node-oracledb Packages] ( #selfhost )
45
45
4 . [ Installing Node-oracledb 1.x or 2.x] ( #installingoldvers )
46
46
5 . [ Useful Resources for Node-oracledb] ( #otherresources )
47
47
6 . [ Troubleshooting Node-oracledb Installation Problems] ( #troubleshooting )
@@ -69,8 +69,10 @@ guaranteed to be available or usable in your environment.
69
69
#### <a name =" mig31 " ></a > 1.1 Changes in node-oracledb version 3.1
70
70
71
71
Pre-built binaries are now contained in the package downloaded from
72
- npm. This removes the internally executed step of downloading a
73
- binary package from GitHub.
72
+ npm. This removes the previous internally executed step of
73
+ downloading a suitable binary package from GitHub. If install size is
74
+ an issue, all binaries except those for the current Node.js version
75
+ can be deleted with ` npm run prune ` .
74
76
75
77
Source code is no longer included in the package available from npm.
76
78
To compile from source code, you need access to GitHub or its [ Oracle
@@ -315,8 +317,7 @@ included in Node.js:
315
317
npm install oracledb
316
318
```
317
319
318
- Available pre-built node-oracledb binaries can been seen on the
319
- [ releases] [ 41 ] page. They were built on Oracle Linux 6.
320
+ The pre-built binaries were built on Oracle Linux 6.
320
321
321
322
If a pre-built binary is successfully installed but isn't usable
322
323
because it depends on a different glibc version, uninstall
@@ -458,8 +459,7 @@ included in Node.js:
458
459
npm install oracledb
459
460
```
460
461
461
- Available pre-built node-oracledb binaries can been seen on the
462
- [ releases] [ 41 ] page. They were built on Oracle Linux 6.
462
+ The pre-built binaries were built on Oracle Linux 6.
463
463
464
464
If a pre-built binary is successfully installed but isn't usable
465
465
because it depends on a different glibc version, uninstall
@@ -595,9 +595,6 @@ included in Node.js:
595
595
npm install oracledb
596
596
```
597
597
598
- Available pre-built node-oracledb binaries can been seen on the
599
- [ releases] [ 41 ] page.
600
-
601
598
If a pre-built binary is successfully installed but isn't usable
602
599
because it depends on a different glibc version, uninstall
603
600
node-oracledb and install again from source code.
@@ -695,9 +692,6 @@ included in Node.js:
695
692
npm install oracledb
696
693
```
697
694
698
- Available pre-built node-oracledb binaries can been seen on the
699
- [ releases] [ 41 ] page.
700
-
701
695
##### To install from source code:
702
696
703
697
If a pre-built node-oracledb binary is not installable, the binary can
@@ -819,9 +813,6 @@ included in Node.js:
819
813
npm install oracledb
820
814
```
821
815
822
- Available pre-built node-oracledb binaries can been seen on the
823
- [ releases] [ 41 ] page.
824
-
825
816
##### To install from source code:
826
817
827
818
If a pre-built node-oracledb binary is not installable, the binary can
@@ -919,7 +910,7 @@ client installation. Make sure that `PATH` contains the correct
919
910
binary directory, for example ` C:\oracle\product\12.2.0\dbhome_1\bin ` .
920
911
921
912
For easy development, the free [ Oracle XE] [ 20 ] version of the database
922
- is available on Linux . Applications developed with XE may be
913
+ is available on Windows . Applications developed with XE may be
923
914
immediately used with other editions of the Oracle Database.
924
915
925
916
You may need Administrator privileges to set environment variables or
@@ -952,9 +943,6 @@ included in Node.js:
952
943
npm install oracledb
953
944
```
954
945
955
- Available pre-built node-oracledb binaries can been seen on the
956
- [ releases] [ 41 ] page.
957
-
958
946
##### To install from source code:
959
947
960
948
If a pre-built node-oracledb binary is not installable, the binary can
@@ -1427,7 +1415,7 @@ export NODE_PATH=$(npm root -g)
1427
1415
node myapp.js
1428
1416
```
1429
1417
1430
- ### <a name =" selfhost " ></a > 3.13 Hosting your own node-oracledb Packages
1418
+ ### <a name =" selfhost " ></a > 3.13 Building and Hosting your own node-oracledb Packages
1431
1419
1432
1420
You can host node-oracledb packages locally.
1433
1421
@@ -1440,9 +1428,9 @@ can be used. See
1440
1428
[ package/README] ( https://github.com/oracle/node-oracledb/blob/master/package/README.md )
1441
1429
for details.
1442
1430
1443
- If you make the package accessible on your local machine , for example
1444
- at https://www.example.com/oracledb-3.1.0.tgz , then your install
1445
- command would be:
1431
+ If you make the package accessible on your local web server , for
1432
+ example at https://www.example.com/oracledb-3.1.0.tgz , then your
1433
+ install command would be:
1446
1434
1447
1435
```
1448
1436
npm install https://www.example.com/oracledb-3.1.0.tgz
0 commit comments