Skip to content

Commit 8af5d21

Browse files
committed
1.0 release announcement
1 parent d46f025 commit 8af5d21

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: "ReactJS.NET 1.0 - Now with full Linux support"
3+
layout: post
4+
author: Daniel Lo Nigro
5+
---
6+
7+
I'm happy to announce the release of ReactJS.NET 1.0! There have not been many changes since 0.2.1, but I've decided to release this version as 1.0 since the API is becoming fairly stable, I'm now using it in production for one of the pages on my personal site, and most importantly, I've met the end goal I set when starting the project — Getting it to run on Linux :)
8+
9+
Changes since 0.2.1:
10+
11+
* [Full Linux and Mac OS X (Mono) support](/guides/mono.html) via Google's V8 JavaScript engine, the same engine used by Google Chrome and Node.js. Windows support for V8 is a lower priority but will come soon.
12+
* ES6 transforms (via jstransform) enabled out of the box, meaning you can use some ES6 features such as [arrow functions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/arrow_functions), [short object notation](http://ariya.ofilabs.com/2013/02/es6-and-object-literal-property-value-shorthand.html) and [classes](http://wiki.ecmascript.org/doku.php?id=strawman:maximally_minimal_classes) in your JSX files.
13+
14+
Have fun, and as always, please feel free to send feedback or bug reports
15+
[on GitHub](https://github.com/reactjs/React.NET).
16+
17+
— Daniel

site/jekyll/guides/mono.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ layout: docs
33
title: Linux (Mono)
44
---
55

6-
**New in ReactJS.NET 0.2.1**
6+
**New in ReactJS.NET 1.0**
77

8-
ReactJS.NET 0.2.1 includes full support for Mono via Google's [V8 JavaScript engine](https://code.google.com/p/v8/), the same engine used by Google Chrome and Node.js. To use ReactJS.NET with Mono, you need to compile V8 and VroomJs (a .NET wrapper around V8). This can be accomplished by running the following shell commands on your Linux or Mac OS X machine:
8+
ReactJS.NET 1.0 includes full support for Mono via Google's [V8 JavaScript engine](https://code.google.com/p/v8/), the same engine used by Google Chrome and Node.js. To use ReactJS.NET with Mono, you need to compile V8 and VroomJs (a .NET wrapper around V8). This can be accomplished by running the following shell commands on your Linux or Mac OS X machine:
99

1010
```sh
1111
# Get a supported version of V8
1212
cd /usr/local/src/
13-
git clone https://github.com/v8/v8.git
14-
cd v8
13+
git clone https://github.com/v8/v8.git v8-3.17
14+
cd v8-3.17
1515
git checkout 3.17
1616

1717
# Build V8
@@ -27,7 +27,7 @@ git submodule update --init
2727
cd lib/VroomJs/libvroomjs/
2828

2929
# Build libvroomjs
30-
g++ jscontext.cpp jsengine.cpp managedref.cpp bridge.cpp jsscript.cpp -o libVroomJsNative.so -shared -L /usr/local/src/v8/out/native/lib.target/ -I /usr/local/src/v8/include/ -fPIC -Wl,--no-as-needed -l:/usr/local/lib/libv8.so.3.17.16.2
30+
g++ jscontext.cpp jsengine.cpp managedref.cpp bridge.cpp jsscript.cpp -o libVroomJsNative.so -shared -L /usr/local/src/v8-3.17/out/native/lib.target/ -I /usr/local/src/v8-3.17/include/ -fPIC -Wl,--no-as-needed -l:/usr/local/lib/libv8.so.3.17.16.2
3131
cp libVroomJsNative.so /usr/local/lib/
3232
ldconfig
3333
```

site/jekyll/guides/msbuild.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ title: MSBuild
77

88
ReactJS.NET includes an MSBuild task for compiling JSX into JavaScript. This is
99
handy to improve the start time of your application, especially if you have a
10-
large number of JSX files. Additionally, it is required for use on platforms
11-
where JSX compilation is not yet supported (such as Mono).
10+
large number of JSX files.
1211

1312
To use it, first reference the `TransformJsx` task, and then call it wherever
1413
you like:

0 commit comments

Comments
 (0)