Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 09c0f68

Browse files
authoredMar 1, 2018
Merge pull request #43 from ModusCreateOrg/readme-and-notes
Updated README files for all projects
2 parents 1e77293 + 5477561 commit 09c0f68

File tree

147 files changed

+4904
-10419
lines changed

Some content is hidden

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

147 files changed

+4904
-10419
lines changed
 

‎01-scaffolding/README.md

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,13 @@
1-
# 01 Scaffolding
1+
# 01 Ext JS to React: Scaffolding
22

3-
This subdirectory contains an app already generated with create-react-app, as
4-
described in the Scaffolding blog post (link here)
3+
This directory contains an example of a sample React application generated by [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding blog post](https://moduscreate.com/blog/ext-js-to-react-scaffolding/).
54

6-
Make sure you have yarn installed.
5+
Create-react-app is a great way to spin up a starter application with React and will be used extensively in this repo.
76

8-
To run the app server:
7+
## Example Projects
98

10-
```
11-
$ cd my-app
12-
$ yarn start
13-
```
9+
- [my-app](./my-app): sample starter app created by create-react-app
1410

15-
A browser window will automatically open and will load the app.
16-
17-
As you make edits to the sources in the my-app/ directory, the browser will
18-
automatically refresh to reflect your changes.
19-
20-
The blog post suggetss some simple edits to see this in action.
21-
22-
For a quick start, you can edit my-app/src/App.js and comment out one of the two
23-
import lines, for logo.svg OR logo2.svg.
11+
### Related Blog Article
2412

13+
[Ext JS to React: Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/)

‎01-scaffolding/my-app/README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
This project was generated as a sample React application using [create-react-app](https://www.npmjs.com/package/create-react-app) as described in the [Scaffolding](https://moduscreate.com/blog/ext-js-to-react-scaffolding/) blog post.
2+
3+
# my-app
4+
5+
This project contains a simple modification to the initially generated starter app. It serves to demonstrate how to edit files within the starter app and see the changes update in the browser real-time (when following the steps outlined in the [Scaffolding blog article](https://moduscreate.com/blog/ext-js-to-react-scaffolding/)).
6+
7+
*Make sure you have npm installed.*
8+
9+
To run the app server:
10+
11+
```
12+
$ npm install
13+
$ npm start
14+
```
15+
16+
A browser window will automatically open and will load the app.
17+
18+
As you make edits to the sources in the my-app/ directory, the browser will automatically refresh to reflect your changes.
19+
20+
The blog post suggests some simple edits to see this in action.
21+
22+
For a quick start, you can edit `my-app/src/App.js` and comment out one of the two import lines: `logo.svg` or `logo2.svg`.
23+
24+
25+
# Create React App README
26+
127
This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).
228

329
Below you will find some information on how to perform common tasks.<br>

0 commit comments

Comments
 (0)
Please sign in to comment.