diff --git a/.gitignore b/.gitignore index b0e3907..1930627 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +dist node_modules npm-debug.log -.DS_Store +*.swp +*.swo diff --git a/LICENSE b/LICENSE index 44a03c2..492bf11 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2014 Dan Abramov +Copyright (c) 2016 Tanner Collin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 4b77be1..e69de29 100644 --- a/README.md +++ b/README.md @@ -1,47 +0,0 @@ -react-hot-boilerplate -===================== - -The minimal dev environment to enable live-editing React components. - -### Usage - -``` -npm install -npm start -open http://localhost:3000 -``` - -Now edit `src/App.js`. -Your changes will appear without reloading the browser like in [this video](http://vimeo.com/100010922). - -### Linting - -This boilerplate project includes React-friendly ESLint configuration. - -``` -npm run lint -``` - -### Using `0.0.0.0` as Host - -You may want to change the host in `server.js` and `webpack.config.js` from `localhost` to `0.0.0.0` to allow access from same WiFi network. This is not enabled by default because it is reported to cause problems on Windows. This may also be useful if you're using a VM. - -### Missing Features - -This boilerplate is purposefully simple to show the minimal configuration for React Hot Loader. For a real project, you'll want to add a separate config for production with hot reloading disabled and minification enabled. You'll also want to add a router, styles and maybe combine dev server with an existing server. This is out of scope of this boilerplate, but you may want to look into [other starter kits](https://github.com/gaearon/react-hot-loader/blob/master/docs/README.md#starter-kits). - -### Dependencies - -* React -* Webpack -* [webpack-dev-server](https://github.com/webpack/webpack-dev-server) -* [babel-loader](https://github.com/babel/babel-loader) -* [react-hot-loader](https://github.com/gaearon/react-hot-loader) - -### Resources - -* [Demo video](http://vimeo.com/100010922) -* [react-hot-loader on Github](https://github.com/gaearon/react-hot-loader) -* [Integrating JSX live reload into your workflow](http://gaearon.github.io/react-hot-loader/getstarted/) -* [Troubleshooting guide](https://github.com/gaearon/react-hot-loader/blob/master/docs/Troubleshooting.md) -* Ping dan_abramov on Twitter or #reactjs IRC diff --git a/index.html b/index.html index 87af1ee..a84ac6a 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - React boilerplate + Notify diff --git a/package.json b/package.json index 57ea572..491d4b6 100644 --- a/package.json +++ b/package.json @@ -1,32 +1,13 @@ { - "name": "react-hot-boilerplate", + "name": "notify", "version": "1.0.0", - "description": "Boilerplate for ReactJS project with hot code reloading", + "description": "", "scripts": { "start": "node server.js", "lint": "eslint src" }, - "repository": { - "type": "git", - "url": "https://github.com/gaearon/react-hot-boilerplate.git" - }, - "keywords": [ - "react", - "reactjs", - "boilerplate", - "hot", - "reload", - "hmr", - "live", - "edit", - "webpack" - ], - "author": "Dan Abramov (http://github.com/gaearon)", + "author": "Tanner Collin (http://github.com/tannercollin)", "license": "MIT", - "bugs": { - "url": "https://github.com/gaearon/react-hot-boilerplate/issues" - }, - "homepage": "https://github.com/gaearon/react-hot-boilerplate", "devDependencies": { "babel-core": "^5.4.7", "babel-eslint": "^3.1.9",