Skip to content

.NET library for JSX compilation and server-side rendering of React components

License

Notifications You must be signed in to change notification settings

charanpasham/React.NET

This branch is 546 commits behind reactjs/React.NET:main.

Folders and files

NameName
Last commit message
Last commit date
May 24, 2018
Apr 26, 2018
Apr 26, 2018
Nov 2, 2017
Feb 19, 2018
Jan 20, 2018
Jan 20, 2018
Nov 4, 2017
Oct 1, 2016
Mar 29, 2014
Apr 10, 2015
May 15, 2017
May 11, 2017
Mar 5, 2018
May 11, 2017
Nov 4, 2017
Aug 27, 2017
May 11, 2017
May 11, 2017

Repository files navigation

ReactJS.NET is a library that makes it easier to use Babel along with Facebook's React and JSX from C#.

Build status  NuGet version Download count

Features

Quick Start

Install the package

Install-Package React.Web.Mvc4 # For ASP.NET MVC 4 or 5
Install-Package React.AspNet   # For ASP.NET Core MVC 1.0

Create JSX files

// /Scripts/HelloWorld.jsx
var HelloWorld = React.createClass({
    render: function () {
        return (
            <div>Hello {this.props.name}</div>
        );
    }
});

Reference the JSX files from your HTML

<script src="@Url.Content("~/Scripts/HelloWorld.jsx")"></script>

Now you can use the HelloWorld component.

For information on more advanced topics (including precompilation and server-side rendering), check out the documentation

Building Manually and Contributing

When building your own copy of ReactJS.NET (for example, if implementing a new feature or fixing a bug), your first build always needs to be done using the build script (dev-build.bat) as this generates a few files required by the build (such as SharedAssemblyVersionInfo.cs). Once this build is completed, you can open React.sln in Visual Studio and compile directly from Visual Studio. Please refer to the documentation page on contributing for more information on contributing to ReactJS.NET.

Note that the build requires you to have Git installed. If you do not want to install Git, you may remove the GitVersion task from build.proj.

About

.NET library for JSX compilation and server-side rendering of React components

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 87.8%
  • JavaScript 4.8%
  • CSS 4.4%
  • HTML 1.5%
  • Ruby 0.7%
  • PowerShell 0.3%
  • Other 0.5%