Another React-Redux starter kit heavily inspired by heavily inspired by @coryhouse's React Slingshot Project.
Slingshot Sagas is a comprehensive starter kit for rapid application development using React, Redux, React Router, and Redux Sagas.
Why Slingshot?
- (Almost) One command to get started - Type
npm start
to start development in your default browser. a. In order to make requests to the included test server, see Test Server. - Rapid feedback - Each time you hit save, changes hot reload and linting and automated tests run.
- One command line to check - All feedback is displayed on a single command line.
- No more JavaScript fatigue - Slingshot uses the most popular and powerful libraries for working with React.
- Working example app - The included example app shows how this all works together.
- Automated production build - Type
npm run build
to do all this:
- Initial Machine Setup. First time running the starter kit? Then complete the Initial Machine Setup.
- Clone the project.
git clone https://github.com/nibblesnbits/slingshot-saga.git
. - Install the pacakges.
npm i
- Run the example app.
npm start -s
This will run the automated build process, start up a webserver, and open the application in your default browser. When doing development with this kit, this command will continue watching all your files. Every time you hit save the code is rebuilt, linting runs, and tests run automatically. Note: The -s flag is optional. It enables silent mode which suppresses unnecessary messages during the build. - Review the example app. This starter kit includes a working example app that calculates fuel savings. Note how all source code is placed under /src. Tests are placed alongside the file under test. The final built app is placed under /dist. These are the files you run in production.
- Install Node 5.0.0 or greater Need to run multiple versions of Node? Use nvm.
- Install Git.
- On a Mac? You're all set. If you're on Linux or Windows, complete the steps for your OS below.
On Linux:
- Run this to increase the limit on the number of files Linux will watch. Here's why.
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
On Windows:
- Install Python 2.7. Some node modules may rely on node-gyp, which requires Python on Windows.
- Install C++ Compiler. Browser-sync requires a C++ compiler on Windows. Visual Studio Express comes bundled with a free C++ compiler. Or, if you already have Visual Studio installed: Open Visual Studio and go to File -> New -> Project -> Visual C++ -> Install Visual C++ Tools for Windows Desktop. The C++ compiler is used to compile browser-sync (and perhaps other Node modules).
Slingshot offers a rich development experience using the following technologies:
Tech | Description | Learn More |
---|---|---|
React | Fast, composable client-side components. | Pluralsight Course |
Redux | Enforces unidirectional data flows and immutable, hot reloadable store. Supports time-travel debugging. Lean alternative to Facebook's Flux. | [Pluralsight Course] |
Redux Saga | A library that aims to make side effects in React/Redux applications easier and better. | |
React Router | A complete routing library for React | Pluralsight Course |
React Router Redux | Enables easy programatic management of routing state | |
Babel | Compiles ES6 to ES5. Enjoy the new version of JavaScript today. | ES6 REPL, ES6 vs ES5, ES6 Katas, Pluralsight course |
Webpack | Bundles npm packages and our JS into a single file. Includes hot reloading via react-transform-hmr. | Quick Webpack How-to Pluralsight Course |
Browsersync | Lightweight development HTTP server that supports synchronized testing and debugging on multiple devices. | Intro vid |
Mocha | Automated tests with Chai for assertions and Enzyme for DOM testing without a browser using Node. | Pluralsight Course |
Isparta | Code coverage tool for ES6 code transpiled by Babel. | |
ESLint | Lint JS. Reports syntax and style issues. Using eslint-plugin-react for additional React specific linting rules. | |
SASS | Compiled CSS styles with variables, functions, and more. | Pluralsight Course |
PostCSS | Transform styles with JS plugins. Used to autoprefix CSS | |
Editor Config | Enforce consistent editor settings (spaces vs tabs, etc). | IDE Plugins |
npm Scripts | Glues all this together in a handy automated build. | Pluralsight course, Why not Gulp? |
In order to run the sample, simply run npm i
in the project directory, then run npm start -s
to start the demo. This command will open the browser for you.
To test the requests the application makes, in another terminal, run the Test Server.
This project includes a submodule from an auth0 example repo. There are a couple of steps enable requests to that server.
First, navigate to the project directory directory and execute
git submodule update --recursive --remote
cd auth-server
npm i
This will pull down the submodule and download it's NPM packages.
After initial setup, just navigate to the auth-server
directory and run npm start -s
to run the server.
- Handle 404 routes
- If anyone has any more, feel free to report them in Issues