commit 9fb74418f3274fb416462022c573de4a8751de20
parent e74f816f799ee9bafa59a455164812434592d048
Author: Konstantin Tarkus <hello@tarkus.me>
Date: Wed, 17 Sep 2014 14:01:37 +0400
Update README.md
Diffstat:
6 files changed, 11 insertions(+), 12 deletions(-)
diff --git a/README.md b/README.md
@@ -1,6 +1,4 @@
-# Facebook React Starter Kit
-
-
+[](https://github.com/kriasoft/react-starter-kit)
> This project template is a skeleton for a typical web application or
> single-page application (SPA) based on Facebook React. You can use it
@@ -9,7 +7,7 @@
> paired with a server-side project similar to
> [ASP.NET Web Application Starter Kit](https://github.com/kriasoft/AspNet-Server-Template).
-**Source**: [https://github.com/kriasoft/react-seed](https://github.com/kriasoft/React-Seed)
+**Source**: [https://github.com/kriasoft/react-starter-kit](https://github.com/kriasoft/react-starter-kit)
### Technology Stack
@@ -53,10 +51,10 @@
### Getting Started
-Just clone or [fork](https://github.com/kriasoft/React-Seed/fork) the repo and start hacking:
+Just clone or [fork](https://github.com/kriasoft/react-starter-kit/fork) the repo and start hacking:
```shell
-$ git clone -o upstream https://github.com/kriasoft/React-Seed.git MyApp
+$ git clone -o upstream https://github.com/kriasoft/react-starter-kit.git MyApp
$ cd MyApp
$ npm install -g gulp # Install Gulp task runner globally
$ npm install # Install Node.js components listed in ./package.json
diff --git a/config/webpack.config.js b/config/webpack.config.js
@@ -1,5 +1,5 @@
/*!
- * Facebook React Starter Kit | https://github.com/kriasoft/React-Seed
+ * Facebook React Starter Kit | https://github.com/kriasoft/react-starter-kit
* Copyright (c) KriaSoft, LLC. All rights reserved. See LICENSE.txt
*/
diff --git a/gulpfile.js b/gulpfile.js
@@ -1,5 +1,5 @@
/*!
- * Facebook React Starter Kit | https://github.com/kriasoft/React-Seed
+ * Facebook React Starter Kit | https://github.com/kriasoft/react-starter-kit
* Copyright (c) KriaSoft, LLC. All rights reserved. See LICENSE.txt
*/
diff --git a/package.json b/package.json
@@ -3,7 +3,7 @@
"private": true,
"version": "0.0.0",
"description": "Facebook React Starter Kit",
- "repository": "https://github.com/kriasoft/react-seed",
+ "repository": "https://github.com/kriasoft/react-starter-kit",
"dependencies": {
"bootstrap": "^3.2.0",
"react": "^0.11.2",
diff --git a/src/App.jsx b/src/App.jsx
@@ -7,7 +7,7 @@
var React = require('react');
var {Routes, Route} = require('react-router');
-// Export React so the devtools can find it
+// Export React so the dev tools can find it
(window !== window.top ? window.top : window).React = React;
React.renderComponent(
diff --git a/src/pages/Home.jsx b/src/pages/Home.jsx
@@ -20,11 +20,12 @@ var HomePage = React.createClass({
</ul>
<h4>Development Tools:</h4>
<ul>
- <li><a href="http://webpack.github.io/">Webpack</a> - Compiles front-end source code into modules / bundles</li>
<li><a href="http://gulpjs.com">Gulp</a> - JavaScript streaming build system and task automation</li>
+ <li><a href="http://webpack.github.io/">Webpack</a> - Compiles front-end source code into modules / bundles</li>
+ <li><a href="http://www.browsersync.io/">BrowserSync</a> - A lightweight HTTP server for development</li>
</ul>
<h3>Fork me on GitHub</h3>
- <p><a href="https://github.com/kriasoft/react-seed">https://github.com/kriasoft/react-seed</a></p>
+ <p><a href="https://github.com/kriasoft/react-starter-kit">https://github.com/kriasoft/react-starter-kit</a></p>
</div>
);
}