|
1 | 1 | [ReactJS.NET](http://reactjs.net/)
|
2 | 2 | ===========
|
3 | 3 |
|
4 |
| -ReactJS.NET is a library that makes it easier to use Facebook's |
5 |
| -[React](http://facebook.github.io/react/) and |
6 |
| -[JSX](http://facebook.github.io/react/docs/jsx-in-depth.html) from C#. |
| 4 | +ReactJS.NET is a library that makes it easier to use [Babel](http://babeljs.io/) along with Facebook's [React](http://facebook.github.io/react/) and [JSX](http://facebook.github.io/react/docs/jsx-in-depth.html) from C#. |
7 | 5 |
|
8 | 6 | [](https://ci.appveyor.com/project/Daniel15/react-net/branch/master)
|
9 |
| -[](http://teamcity.codebetter.com/viewType.html?buildTypeId=ReactJSNet_Master&guest=1) |
10 | 7 | [](https://www.nuget.org/packages/React.Core/)
|
11 | 8 | [](https://www.nuget.org/packages/React.Core/)
|
12 | 9 |
|
13 | 10 | Features
|
14 | 11 | ========
|
15 |
| - * On-the-fly [JSX to JavaScript compilation](http://reactjs.net/getting-started/usage.html) |
| 12 | + * On-the-fly [JSX to JavaScript compilation](http://reactjs.net/getting-started/usage.html) via [Babel](http://babeljs.io/) |
16 | 13 | * JSX to JavaScript compilation via popular minification/combination
|
17 | 14 | libraries:
|
18 | 15 | * [ASP.NET Bundling and Minification](http://reactjs.net/guides/weboptimizer.html)
|
19 | 16 | * [Cassette](http://reactjs.net/guides/cassette.html)
|
20 | 17 | * [Webpack](http://reactjs.net/guides/webpack.html)
|
| 18 | + * [MSBuild](http://reactjs.net/guides/msbuild.html) |
21 | 19 | * [Server-side component rendering](http://reactjs.net/guides/server-side-rendering.html)
|
22 | 20 | to make your initial render super-fast (experimental!)
|
23 | 21 | * [Runs on Linux](http://reactjs.net/guides/mono.html) via Mono and V8
|
| 22 | + * Supports both ASP.NET 4.0/4.5 and ASP.NET 5 |
24 | 23 |
|
25 | 24 | Quick Start
|
26 | 25 | ===========
|
27 | 26 | Install the package
|
28 | 27 | ```
|
29 |
| -Install-Package React.Web.Mvc4 |
| 28 | +Install-Package React.Web.Mvc4 # For ASP.NET MVC 4 or 5 |
| 29 | +Install-Package React.AspNet # For ASP.NET MVC 6 (ASP.NET 5) |
30 | 30 | ```
|
31 | 31 |
|
32 | 32 | Create JSX files
|
|
0 commit comments