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
{{ message }}
This repository was archived by the owner on May 26, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,23 @@ want to use it for.
29
29
|[`@zilliqa-js/util`](./packages/zilliqa-js-util)| Miscellaneous functions that take care of serialisation/deserialisation and validation. | none |
30
30
|[`@zilliqa-js/viewblock`](https://github.com/Ashlar/zilliqa-js-viewblock)| Library interfacing with ViewBlock's APIs |`@zilliqa-js/crypto`|
31
31
32
+
33
+
## Pre-Requisite (Windows Users)
34
+
35
+
`zilliqa-js` uses [`scrypt`](https://www.npmjs.com/package/scrypt) library which depends on `node-gyp` in order to compile the binaries from source on Windows.
36
+
`node-gyp` on Windows requires users to install additional Visual Studio Build tools.
37
+
38
+
To install the required Visual Studio Build tools:
39
+
40
+
```shell
41
+
npm install --global --production windows-build-tools # from an elevated PowerShell or CMD.exe as Administrator
42
+
43
+
npm config set msvs_version 2015 # 2015 is more compatible; though 2017 may work too
44
+
```
45
+
46
+
Refer to https://github.com/nodejs/node-gyp#installation for more information about `node-gyp` installation on Windows.
47
+
48
+
32
49
## Installation
33
50
34
51
It is recommended that developers install the JavaScript client by making use
0 commit comments