Skip to content

Commit

Permalink
release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pmq20 committed Jul 6, 2017
1 parent 07c29d9 commit 482ad7e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
20 changes: 11 additions & 9 deletions README.md
Expand Up @@ -9,7 +9,7 @@
## Features

- Works on Linux, Mac and Windows
- Create a binary distribution of your application
- Creates a binary distribution of your application
- Supports natively any form of `require`, including dynamic ones (e.g. `require(myPath + 'module.js')
- Supports any module, including direct download and compilation from npm
- Native C/C++ modules fully supported
Expand All @@ -29,11 +29,13 @@ It takes less than 5 minutes to compile any project with `node-compiler`.

You won't need to modify a single line of code in your application, no matter how you developed it as long as it works in plain node.js!

| | Arch. | Latest Stable |
|:---------------------:|:--------:|----------------------------------------------------------------------------------------|
| **Windows** | x86-64 | https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-x64.exe/download |
| **macOS** | x86-64 | https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-darwin-x64/download |
| **Linux** | x86-64 | https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-linux-x64/download |
| | Architecture | Latest Stable |
|:---------------------:|:------------:|----------------------------------------------|
| **Windows** | x86-64 | http://enclose.io/nodec/nodec-x64.zip |
| **macOS** | x86-64 | http://enclose.io/nodec/nodec-darwin-x64.gz |
| **Linux** | x86-64 | http://enclose.io/nodec/nodec-linux-x64.gz |

For previous releases, cf. http://enclose.io/nodec

### Install on Linux

Expand All @@ -47,7 +49,7 @@ First install the prerequisites:

Then,

curl -L https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-linux-x64/download > nodec
curl -L http://enclose.io/nodec/nodec-linux-x64.gz | gunzip > nodec
chmod +x nodec
./nodec

Expand All @@ -65,7 +67,7 @@ First install the prerequisites:

Then,

curl -L https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-darwin-x64/download > nodec
curl -L http://enclose.io/nodec/nodec-darwin-x64.gz | gunzip > nodec
chmod +x nodec
./nodec

Expand All @@ -82,7 +84,7 @@ First install the prerequisites:
- [Visual Studio 2017](https://www.visualstudio.com/downloads/), any edition (including the Build Tools SKU).
__Required Components:__ "MSbuild", "VC++ 2017 v141 toolset" and one of the Windows SDKs (10 or 8.1).

Then download the executable [nodec-x64.exe](https://sourceforge.net/projects/node-compiler/files/v1.1.0/nodec-x64.exe/download), optionally rename it to `nodec.exe` and put it under `C:\Windows` (or any other directory that is part of `PATH`). Execute `nodec` from the command line.
Then download the executable [nodec-x64.exe](http://enclose.io/nodec/nodec-x64.zip). Unzip it. Optionally, rename it to `nodec.exe` and put it under `C:\Windows` (or any other directory that is part of `PATH`). Execute `nodec` from the command line.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion tests/node-compiler-blbt

0 comments on commit 482ad7e

Please sign in to comment.