Skip to content

Commit 498332d

Browse files
author
Uco
committed
change http -> https
1 parent 1289a17 commit 498332d

File tree

114 files changed

+593
-593
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+593
-593
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This repo contains the source code and documentation powering [reactjs.org](http
2020
### Running locally
2121

2222
1. `yarn dev` to start the hot-reloading development server (powered by [Gatsby](https://www.gatsbyjs.org))
23-
1. `open http://localhost:8000` to open the site in your favorite browser
23+
1. `open https://localhost:8000` to open the site in your favorite browser
2424

2525
## Contributing
2626

content/authors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jgebhardt:
3636
url: https://twitter.com/jonasgebhardt
3737
jimfb:
3838
name: Jim Sproch
39-
url: http://www.jimsproch.com
39+
url: https://www.jimsproch.com
4040
jingc:
4141
name: Jing Chen
4242
url: https://twitter.com/jingc

content/blog/2013-06-02-jsfiddle-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: JSFiddle Integration
33
author: [vjeux]
44
---
55

6-
[JSFiddle](https://jsfiddle.net) just announced support for React. This is an exciting news as it makes collaboration on snippets of code a lot easier. You can play around this **[base React JSFiddle](http://jsfiddle.net/vjeux/kb3gN/)**, fork it and share it! A [fiddle without JSX](http://jsfiddle.net/vjeux/VkebS/) is also available.
6+
[JSFiddle](https://jsfiddle.net) just announced support for React. This is an exciting news as it makes collaboration on snippets of code a lot easier. You can play around this **[base React JSFiddle](https://jsfiddle.net/vjeux/kb3gN/)**, fork it and share it! A [fiddle without JSX](https://jsfiddle.net/vjeux/VkebS/) is also available.
77

88

9-
<blockquote class="twitter-tweet" align="center"><p>React (by Facebook) is now available on JSFiddle. <a href="http://t.co/wNQf9JPv5u" title="http://facebook.github.io/react/">facebook.github.io/react/</a></p>&mdash; JSFiddle (@jsfiddle) <a href="https://twitter.com/jsfiddle/status/341114115781177344">June 2, 2013</a></blockquote>
9+
<blockquote class="twitter-tweet" align="center"><p>React (by Facebook) is now available on JSFiddle. <a href="https://t.co/wNQf9JPv5u" title="https://facebook.github.io/react/">facebook.github.io/react/</a></p>&mdash; JSFiddle (@jsfiddle) <a href="https://twitter.com/jsfiddle/status/341114115781177344">June 2, 2013</a></blockquote>

content/blog/2013-06-05-why-react.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ to the DOM.
5656
> lightweight description of what the DOM should look like.
5757
5858
We call this process **reconciliation**. Check out
59-
[this jsFiddle](http://jsfiddle.net/2h6th4ju/) to see an example of
59+
[this jsFiddle](https://jsfiddle.net/2h6th4ju/) to see an example of
6060
reconciliation in action.
6161

6262
Because this re-render is so fast (around 1ms for TodoMVC), the developer
@@ -78,7 +78,7 @@ some pretty cool things with it:
7878
for SEO, performance, code sharing and overall flexibility.
7979
- Events behave in a consistent, standards-compliant way in all browsers
8080
(including IE8) and automatically use
81-
[event delegation](http://davidwalsh.name/event-delegate).
81+
[event delegation](https://davidwalsh.name/event-delegate).
8282

8383
Head on over to [https://reactjs.org](https://reactjs.org) to check out what we have
8484
built. Our documentation is geared towards building apps with the framework,

content/blog/2013-06-12-community-roundup.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ React was open sourced two weeks ago and it's time for a little round-up of what
77

88
## Khan Academy Question Editor {#khan-academy-question-editor}
99

10-
It looks like [Sophie Alpert](http://sophiebits.com/) is the first person outside of Facebook and Instagram to push React code to production. We are very grateful for her contributions in form of pull requests, bug reports and presence on IRC ([#reactjs on Freenode](irc://chat.freenode.net/reactjs)). Sophie wrote about her experience using React:
10+
It looks like [Sophie Alpert](https://sophiebits.com/) is the first person outside of Facebook and Instagram to push React code to production. We are very grateful for her contributions in form of pull requests, bug reports and presence on IRC ([#reactjs on Freenode](irc://chat.freenode.net/reactjs)). Sophie wrote about her experience using React:
1111

1212
> I just rewrote a 2000-line project in React and have now made a handful of pull requests to React. Everything about React I've seen so far seems really well thought-out and I'm proud to be the first non-FB/IG production user of React.
1313
>
1414
> The project that I rewrote in React (and am continuing to improve) is the Khan Academy question editor which content creators can use to enter questions and hints that will be presented to students:
15-
> <figure><a href="http://sophiebits.com/2013/06/09/using-react-to-speed-up-khan-academy.html"><img src="../images/blog/khan-academy-editor.png"></a></figure>
15+
> <figure><a href="https://sophiebits.com/2013/06/09/using-react-to-speed-up-khan-academy.html"><img src="../images/blog/khan-academy-editor.png"></a></figure>
1616
>
17-
> [Read the full post...](http://sophiebits.com/2013/06/09/using-react-to-speed-up-khan-academy.html)
17+
> [Read the full post...](https://sophiebits.com/2013/06/09/using-react-to-speed-up-khan-academy.html)
1818
1919
## Pimp my Backbone.View (by replacing it with React) {#pimp-my-backboneview-by-replacing-it-with-react}
2020

@@ -30,15 +30,15 @@ It looks like [Sophie Alpert](http://sophiebits.com/) is the first person outsid
3030
3131
## Using facebook's React with require.js {#using-facebooks-react-with-requirejs}
3232

33-
[Mario Mueller](http://blog.xenji.com/) wrote a menu component in React and was able to easily integrate it with require.js, EventEmitter2 and bower.
33+
[Mario Mueller](https://blog.xenji.com/) wrote a menu component in React and was able to easily integrate it with require.js, EventEmitter2 and bower.
3434

3535
> I recently stumbled upon facebook's React library, which is a JavaScript library for building reusable frontend components. Even if this lib is only at version 0.3.x it behaves very stable, it is fast and is fun to code. I'm a big fan of require.js, so I tried to use React within the require.js eco system. It was not as hard as expected and here are some examples and some thoughts about it.
3636
>
37-
> [Read the full post...](http://blog.xenji.com/2013/06/facebooks-react-require-js.html)
37+
> [Read the full post...](https://blog.xenji.com/2013/06/facebooks-react-require-js.html)
3838
3939
## Origins of React {#origins-of-react}
4040

41-
[Pete Hunt](http://www.petehunt.net/blog/) explained what differentiates React from other JavaScript libraries in [a previous blog post](/blog/2013/06/05/why-react.html). [Lee Byron](http://leebyron.com/) gives another perspective on Quora:
41+
[Pete Hunt](https://www.petehunt.net/blog/) explained what differentiates React from other JavaScript libraries in [a previous blog post](/blog/2013/06/05/why-react.html). [Lee Byron](https://leebyron.com/) gives another perspective on Quora:
4242

4343
> React isn't quite like any other popular JavaScript libraries, and it solves a very specific problem: complex UI rendering. It's also intended to be used along side many other popular libraries. For example, React works well with Backbone.js, amongst many others.
4444
>

content/blog/2013-06-19-community-roundup-2.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Since the launch we have received a lot of feedback and are actively working on
77

88
## Some quick thoughts on React {#some-quick-thoughts-on-react}
99

10-
[Andrew Greig](http://www.andrewgreig.com/) made a blog post that gives a high level description of what React is.
10+
[Andrew Greig](https://www.andrewgreig.com/) made a blog post that gives a high level description of what React is.
1111

1212
> I have been using Facebooks recently released JavaScript framework called React.js for the last few days and have managed to obtain a rather high level understanding of how it works and formed a good perspective on how it fits in to the entire javascript framework ecosystem.
1313
>
@@ -17,46 +17,46 @@ Since the launch we have received a lot of feedback and are actively working on
1717
>
1818
> I found the best way to utilise React was to pair it with Backbone, with React replacing the Backbone View, or to write your own Model/Data object and have React communicate with that.
1919
>
20-
> [Read the full post...](http://www.andrewgreig.com/637/)
20+
> [Read the full post...](https://www.andrewgreig.com/637/)
2121
2222
## React and Socket.IO Chat Application {#react-and-socketio-chat-application}
2323

2424
[Danial Khosravi](https://danialk.github.io/) made a real-time chat application that interacts with the back-end using Socket.IO.
2525

26-
> A week ago I was playing with AngularJS and [this little chat application](https://github.com/btford/angular-socket-io-im) which uses socket.io and nodejs for realtime communication. Yesterday I saw a post about ReactJS in [EchoJS](http://www.echojs.com/) and started playing with this UI library. After playing a bit with React, I decided to write and chat application using React and I used Bran Ford's Backend for server side of this little app.
26+
> A week ago I was playing with AngularJS and [this little chat application](https://github.com/btford/angular-socket-io-im) which uses socket.io and nodejs for realtime communication. Yesterday I saw a post about ReactJS in [EchoJS](https://www.echojs.com/) and started playing with this UI library. After playing a bit with React, I decided to write and chat application using React and I used Bran Ford's Backend for server side of this little app.
2727
> <figure><a href="https://danialk.github.io/blog/2013/06/16/reactjs-and-socket-dot-io-chat-application/"><img src="../images/blog/chatapp.png"></a></figure>
2828
>
2929
> [Read the full post...](https://danialk.github.io/blog/2013/06/16/reactjs-and-socket-dot-io-chat-application/)
3030
3131
## React and Other Frameworks {#react-and-other-frameworks}
3232

33-
[Pete Hunt](http://www.petehunt.net/blog/) wrote an answer on Quora comparing React and Angular directives. At the end, he explains how you can make an Angular directive that is in fact being rendered with React.
33+
[Pete Hunt](https://www.petehunt.net/blog/) wrote an answer on Quora comparing React and Angular directives. At the end, he explains how you can make an Angular directive that is in fact being rendered with React.
3434

3535
> To set the record straight: React components are far more powerful than Angular templates; they should be compared with Angular's directives instead. So I took the first Google hit for "AngularJS directive tutorial" (AngularJS Directives Tutorial - Fundoo Solutions), rewrote it in React and compared them. [...]
3636
>
3737
> We've designed React from the beginning to work well with other libraries. Angular is no exception. Let's take the original Angular example and use React to implement the fundoo-rating directive.
3838
>
3939
> [Read the full post...](https://www.quora.com/Pete-Hunt/Posts/Facebooks-React-vs-AngularJS-A-Closer-Look)
4040
41-
In the same vein, [Markov Twain](https://twitter.com/markov_twain/status/345702941845499906) re-implemented the examples on the front-page [with Ember](http://jsbin.com/azihiw/2/edit) and [Vlad Yazhbin](https://twitter.com/vla) re-implemented the tutorial [with Angular](http://jsfiddle.net/vla/Cdrse/).
41+
In the same vein, [Markov Twain](https://twitter.com/markov_twain/status/345702941845499906) re-implemented the examples on the front-page [with Ember](https://jsbin.com/azihiw/2/edit) and [Vlad Yazhbin](https://twitter.com/vla) re-implemented the tutorial [with Angular](https://jsfiddle.net/vla/Cdrse/).
4242

4343
## Web Components: React & x-tags {#web-components-react--x-tags}
4444

45-
Mozilla and Google are actively working on Web Components. [Vjeux](http://blog.vjeux.com/) wrote a proof of concept that shows how to implement them using React.
45+
Mozilla and Google are actively working on Web Components. [Vjeux](https://blog.vjeux.com/) wrote a proof of concept that shows how to implement them using React.
4646

47-
> Using [x-tags](http://www.x-tags.org/) from Mozilla, we can write custom tags within the DOM. This is a great opportunity to be able to write reusable components without being tied to a particular library. I wrote [x-react](https://github.com/vjeux/react-xtags/) to have them being rendered in React.
48-
> <figure><a href="http://blog.vjeux.com/2013/javascript/custom-components-react-x-tags.html"><img src="../images/blog/xreact.png"></a></figure>
47+
> Using [x-tags](https://www.x-tags.org/) from Mozilla, we can write custom tags within the DOM. This is a great opportunity to be able to write reusable components without being tied to a particular library. I wrote [x-react](https://github.com/vjeux/react-xtags/) to have them being rendered in React.
48+
> <figure><a href="https://blog.vjeux.com/2013/javascript/custom-components-react-x-tags.html"><img src="../images/blog/xreact.png"></a></figure>
4949
>
50-
> [Read the full post...](http://blog.vjeux.com/2013/javascript/custom-components-react-x-tags.html)
50+
> [Read the full post...](https://blog.vjeux.com/2013/javascript/custom-components-react-x-tags.html)
5151
5252
## React TodoMVC Example {#react-todomvc-example}
5353

54-
[TodoMVC.com](http://todomvc.com/) is a website that collects various implementations of the same basic Todo app. [Pete Hunt](http://www.petehunt.net/blog/) wrote an idiomatic React version.
54+
[TodoMVC.com](https://todomvc.com/) is a website that collects various implementations of the same basic Todo app. [Pete Hunt](https://www.petehunt.net/blog/) wrote an idiomatic React version.
5555

5656
> Developers these days are spoiled with choice when it comes to selecting an MV* framework for structuring and organizing their JavaScript web apps.
5757
>
5858
> To help solve this problem, we created TodoMVC - a project which offers the same Todo application implemented using MV* concepts in most of the popular JavaScript MV* frameworks of today.
59-
> <figure><a href="http://todomvc.com/labs/architecture-examples/react/"><img src="../images/blog/todomvc.png"></a></figure>
59+
> <figure><a href="https://todomvc.com/labs/architecture-examples/react/"><img src="../images/blog/todomvc.png"></a></figure>
6060
>
6161
> [Read the source code...](https://github.com/tastejs/todomvc/tree/gh-pages/labs/architecture-examples/react)
6262

0 commit comments

Comments
 (0)