Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chadxz/personal-site-react
rewrite of personal site using react + webpack
https://github.com/chadxz/personal-site-react
react webpack
Last synced: about 1 month ago
JSON representation
rewrite of personal site using react + webpack
- Host: GitHub
- URL: https://github.com/chadxz/personal-site-react
- Owner: chadxz
- License: mit
- Created: 2014-11-27T00:37:50.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-09T20:36:04.000Z (over 8 years ago)
- Last Synced: 2023-08-03T10:10:29.735Z (over 1 year ago)
- Topics: react, webpack
- Language: JavaScript
- Size: 470 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
personal-site-react
===================rewrite of personal site using react + webpack. This is the 4th rewrite... the progression so far has been:
- [jQuery only](https://github.com/chadxz/chadmcelligott.com)
- [Backbone.js and AMD](https://github.com/chadxz/personal-site-rewrite/tree/master)
- [Backbone.js and Webpack](https://github.com/chadxz/personal-site-rewrite/tree/webpack)
- this project. React and WebpackIn the future, I plan to add some websockets functionality to dynamically display new entries without reloading the page.
### to run
```sh
npm install
npm start
```### to deploy to github pages
This isn't really the best process, but it works and I can't be bothered to look into making it better right now.```sh
rm -rf app-dist
git clone https://github.com/chadxz/chadxz.github.io.git app-dist
npm run build
cd app-dist
git add -A
git commit -m "new stuff"
git push
```