Skip to content

Commit dc25c88

Browse files
Updated links (#1069)
* Updated ReactJS home URL link * Updated React Native URL Link
1 parent 726794b commit dc25c88

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [ReactJS.NET](http://reactjs.net/)
22

3-
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#.
3+
ReactJS.NET is a library that makes it easier to use [Babel](http://babeljs.io/) along with Facebook's [React](https://reactjs.org/) and [JSX](https://reactjs.org/docs/jsx-in-depth.html) from C#.
44

55
[![Build status](https://img.shields.io/appveyor/ci/Daniel15/react-net/master.svg)](https://ci.appveyor.com/project/Daniel15/react-net/branch/master) 
66
[![NuGet version](http://img.shields.io/nuget/v/React.Core.svg)](https://www.nuget.org/packages/React.Core/)

site/jekyll/_posts/2014-04-04-hello-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Use React and JSX in ASP.NET MVC"
33
layout: post
44
author: Daniel Lo Nigro
55
---
6-
*Cross-posted from [the official React blog](http://facebook.github.io/react/blog/2014/04/04/reactnet.html).*
6+
*Cross-posted from [the official React blog](https://reactjs.org/blog/2014/04/04/reactnet.html).*
77
____
88

99
Today we're happy to announce the initial release of

site/jekyll/_posts/2014-09-14-1.1.2-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: Daniel Lo Nigro
77
I'm happy to announce the release of ReactJS.NET 1.1.2! This is a minor release and includes a number of changes and fixes since version 1.1.1:
88

99
* Error messages now contain more details, including file name, component name, line number and column number. This should make debugging a bit easier, especially if you're debugging without Visual Studio attached. ([#17](https://github.com/reactjs/React.NET/issues/17))
10-
* [JSX Namespacing](http://facebook.github.io/react/blog/2014/07/17/react-v0.11.html#jsx-namespacing) is now supported ([#37](https://github.com/reactjs/React.NET/issues/37))
10+
* [JSX Namespacing](https://reactjs.org/blog/2014/07/17/react-v0.11.html#jsx-namespacing) is now supported ([#37](https://github.com/reactjs/React.NET/issues/37))
1111

1212
Have fun, and as always, please feel free to send feedback or bug reports
1313
[on GitHub](https://github.com/reactjs/React.NET).

site/jekyll/_posts/2014-11-02-1.1.3-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: Daniel Lo Nigro
66

77
I'm happy to announce the release of ReactJS.NET 1.1.3!
88

9-
In this release, the React version has been upgraded from 0.11.1 to 0.12. The main changes in this React release are that `/** @jsx React.DOM */` is no longer required at the top of your JSX files, and `React.renderComponent` is now `React.render`. A few other API methods have changed as well. [See the official announcement](http://facebook.github.io/react/blog/2014/10/28/react-v0.12.html) for more information on all the changes in this version of React.
9+
In this release, the React version has been upgraded from 0.11.1 to 0.12. The main changes in this React release are that `/** @jsx React.DOM */` is no longer required at the top of your JSX files, and `React.renderComponent` is now `React.render`. A few other API methods have changed as well. [See the official announcement](https://reactjs.org/blog/2014/10/28/react-v0.12.html) for more information on all the changes in this version of React.
1010

1111
ReactJS.NET 1.1.3 also adds preliminary support for using Google's V8 JavaScript engine on Windows, via Microsoft's [ClearScript](https://clearscript.codeplex.com/) project. Previously ReactJS.NET only supported V8 on Mac OS X and Linux. This should be considered beta quality, in that it works but has not been stress tested in a production environment yet (whereas the Linux implementation has been). Future releases will make the handling of JavaScript engines more efficient.
1212

site/jekyll/_posts/2015-04-13-1.5.0-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: Daniel Lo Nigro
66

77
I'm happy to announce the release of ReactJS.NET 1.5! This is a minor release and includes a number of changes and fixes since version 1.4:
88

9-
* [#93](https://github.com/reactjs/React.NET/issues/93) - Upgraded React to 0.13.1. See the full [changelog on the React site](http://facebook.github.io/react/blog/2015/03/10/react-v0.13.html).
9+
* [#93](https://github.com/reactjs/React.NET/issues/93) - Upgraded React to 0.13.1. See the full [changelog on the React site](https://reactjs.org/blog/2015/03/10/react-v0.13.html).
1010
* [#91](https://github.com/reactjs/React.NET/issues/91) - Method to load a script without transforming it. It's becoming more and more common to use external build systems (Gulp, Grunt) or bundlers (Webpack, Browserify) that handle the JSX transformation. The output of these can be loaded directly into ReactJS.NET as it's just vanilla JavaScript. `AddScriptWithoutTransform` makes loading these files more efficient by just loading them directly.
1111
* New option to disable the MSIE JavaScript engine and force use of the V8 engine. If V8 can't be initialised for whatever reason, an exception is thrown.
1212
* [#103](https://github.com/reactjs/React.NET/pull/103) - Flag for `RenderHtml` to skip server-side rendering and only render the client-side JavaScript. Useful for debugging the JavaScript in a browser. *Thanks [Justin Slattery](https://github.com/jslatts)*.

site/jekyll/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ id: home
1616
<section class="home-section">
1717
<p>
1818
ReactJS.NET makes it easier to use Facebook's
19-
[React](http://facebook.github.io/react/) and
20-
[JSX](http://facebook.github.io/react/docs/jsx-in-depth.html) from C# and
19+
[React](https://reactjs.org/) and
20+
[JSX](https://reactjs.org/docs/jsx-in-depth.html) from C# and
2121
other .NET languages, focusing specifically on ASP.NET MVC (although it
2222
also works in other environments). It supports both ASP.NET 4 (with MVC 4 or 5),
2323
and ASP.NET Core MVC. It is cross-platform and can run on Linux via Mono

site/jekyll/tutorials/aspnet4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ You do not have to return basic HTML. You can return a tree of components that y
179179

180180
`ReactDOM.render()` instantiates the root component, starts the framework, and injects the markup into a raw DOM element, provided as the second argument.
181181

182-
The `ReactDOM` module exposes DOM-specific methods, while `React` has the core tools shared by React on different platforms (e.g., [React Native](https://facebook.github.io/react-native/)).
182+
The `ReactDOM` module exposes DOM-specific methods, while `React` has the core tools shared by React on different platforms (e.g., [React Native](https://reactnative.dev/)).
183183

184184
## Composing components
185185

site/jekyll/tutorials/aspnetcore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ You do not have to return basic HTML. You can return a tree of components that y
273273

274274
`ReactDOM.render()` instantiates the root component, starts the framework, and injects the markup into a raw DOM element, provided as the second argument.
275275

276-
The `ReactDOM` module exposes DOM-specific methods, while `React` has the core tools shared by React on different platforms (e.g., [React Native](https://facebook.github.io/react-native/)).
276+
The `ReactDOM` module exposes DOM-specific methods, while `React` has the core tools shared by React on different platforms (e.g., [React Native](https://reactnative.dev/)).
277277

278278
## Composing components
279279

0 commit comments

Comments
 (0)