You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## QuantLib Async Bindings for Node.js [](http://badge.fury.io/js/quantlib)
4
2
5
3
This project brings [QuantLib](http://quantlib.org/) to the Node.js community, it's similar to [QuantLibXL](http://quantlib.org/quantlibxl/) project which is for Microsoft Excel.
6
4
7
5
Most functions in QuantLibXL can be used in the similar way in Node on the server side.
8
6
9
-
All functions in this project are Async, they are exported to Promise sytle functions, please see [Example](#Example) below.
7
+
All functions in this project are Async, they are exported to [Promise](https://www.promisejs.org/) sytle function, please see [Example](#example) below.
10
8
11
9
12
10
## Getting started
@@ -17,11 +15,11 @@ npm install quantlib
17
15
18
16
* Windows
19
17
20
-
`npm install quantlib` will do everything, including the package and pre-built native addon
18
+
`npm install quantlib` will do everything, including the node package installation and pre-built native addon (no dependency) download, you can start use it right away.
21
19
22
20
* Linux & Mac
23
21
24
-
Quantlib and QuantLibAddin must be built first, then build QuantLibNode linking to them
22
+
Quantlib and QuantLibAddin must be built first, then build QuantLibNode linking to them, pre-built native code is not provided for now
25
23
26
24
27
25
## QuantLib Documents
@@ -32,9 +30,9 @@ Quantlib and QuantLibAddin must be built first, then build QuantLibNode linking
0 commit comments