├── .gitignore
├── LICENSE
├── README.md
├── index.html
├── package.json
└── src
├── App.css
├── App.js
├── App.test.js
├── favicon.ico
├── index.css
├── index.js
├── logo.svg
└── pages.js
/.gitignore:
--------------------------------------------------------------------------------
1 | # See http://help.github.com/ignore-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | node_modules
5 |
6 | # testing
7 | coverage
8 |
9 | # production
10 | build
11 |
12 | # misc
13 | .DS_Store
14 | npm-debug.log
15 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2016 Glen Maddern
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Create React App Snapshot
2 |
3 | A combination of [Create React App](https://github.com/facebookincubator/create-react-app) and [React Snapshot](https://github.com/geelen/react-snapshot)
4 |
5 | Visit the live site here: [create-react-app-snapshot.surge.sh](https://create-react-app-snapshot.surge.sh)
6 |
7 | See what it takes to convert one to the other by looking at this [diff](https://github.com/geelen/create-react-app-snapshot/compare/303f774...master)
8 |
9 | ### Try it out
10 |
11 | ```
12 | npm install
13 | npm run publish -- YOUR_DOMAIN_HERE.surge.sh
14 | ```
15 |
16 | That's it!
17 |
18 | ---
19 |
20 | Made with ♥️ and while too jetlagged to work on [frontend.center](https://frontend.center) by Glen Maddern
21 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
If you have JS enabled, the links below should work instantaneously. If not, or if you JS is taking a long time to load, your site still works and is valid. Yay!