Skip to content

⭐ Scalable feature-first React boilerplate and component generator made for Udacity Alumni collaborative projects

License

Notifications You must be signed in to change notification settings

vladimir2492/scalable-react-boilerplate

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Scalable Boilerplate Logo

PLEASE NOTE:

Recently, this boilerplate received a huge update including: GraphQL / Apollo Support, Server Rendering, Generator Refactoring, etc. If you are using this in production, you may want to use the Stable branch for a bit. See the CHANGELOG for more information of the recent updates.

Scalable React Boilerplate

npm version Code Ship Codacy grade

The boilerplate aims to follow best practices for building highly scalable and reusable apps and component libraries with React and cutting edge JavaScript.

You can read more about the organizational strategy used in this app in this Medium post.

We incorporate an ESLint configuration and follow strictly the AirBnb JS & JSX style guides.

What is Feature First?

In most projects and frameworks, files are organized in a File type first fashion. For example, your tests exist in a test folder, your styles in a styles folder. This boilerplate takes a different approach.

We encourage encapsulation of features by asking that you organize each feature into the same folder. With React, this means that your containers and components exist in their own folders, along with literally every other file that pertains to that one component. Your actions, reducers, tests, styles, and everything else are all internal to the component they represent. By decoupling your features from the rest of your app, you set yourself up to reuse your UI components in future projects. You can thank us later!

If this is confusing, don't fret, we've set you up with a few examples and code generation tools. Give it a try! We promise you will enjoy it.

Example Apps

Below are a few example apps that have been built with this project

Experimental Features

Server Rendering

Server rendering has been merged into the master branch πŸŽ‰πŸŽ‰πŸŽ‰.

Docker Support

Coming soon the app will support Docker, which will contain a configured web server to make deployment of this boilerplate simple! You can take a look at this branch for more details.

Documentation

Getting Started

To try the example application out or to use the project, follow the instructions below.

There are two options for installation:

  1. Clone repo

    git clone https://github.com/RyanCCollins/scalable-react-boilerplate.git

  2. Install dependencies

    npm run setup

  3. Run development server

    npm run start

    Your app will be served at: http://0.0.0.0:1337/

or, you can install it using Slush via the npm package

npm install -g slush slush-generator-scalable-react

cd into the folder where you want to create your project and run:

slush generator-scalable-react

Follow the onscreen instructions to create your app.

Deployment

A demo ExpressJS setup is included with the app. The express server will serve up the production minified bundle.js, index.html and any other assets that are located in the /server/public folder.

Running npm run serve:bundle will set your environment to production and serve these files via Express. Also, a Procfile is included, which will run the Express server on Heroku when you push your code.

NOTE: the deployment script, npm run deploy, will place all your generated assets in the server/public folder, where they can be served in production.

To deploy with server-rendering, there is one small thing you will need to do. After your run the deploy script, go into the server/app.js file and add the hashes for your main javascript and css bundles as shown below.

  const html = (
    <Html
      content={content}
      scriptHash="f5a35ab068d111293b63"
      cssHash="6cf439ec56ba2b8700ce1665ebe17a68"
      state={{ data: context.store.getState().apollo.data }}
    />
  );

File Structure

  • Some files left out for brevity. Please reference the files in the Scalable React Boilerplate project for an example of the file structure. The application will ultimately be in use in a production web application project and more info will be posted here when we have production level examples.
.
β”œβ”€β”€ README.md
β”œβ”€β”€ LICENSE
β”œβ”€β”€ index.html
β”œβ”€β”€ package.json
β”œβ”€β”€ webpack.config.js
β”œβ”€β”€ app/
|   β”œβ”€β”€ fonts
|   β”œβ”€β”€ images
|   β”œβ”€β”€ src
|   |   β”œβ”€β”€ components
|   |   |   β”œβ”€β”€ FeatureFirstComponent
|   |   |   |   β”œβ”€β”€ index.js
|   |   |   |   β”œβ”€β”€ index.module.scss
|   |   |   |   └── tests
|   |   |   |   |   └── index.test.js
|   |   |   β”œβ”€β”€ App.jsx
|   |   |   β”œβ”€β”€ Main.js
|   |   |   └── index.js
|   |   β”œβ”€β”€ containers
|   |   |   β”œβ”€β”€ FeatureFirstContainer
|   |   |   |   β”œβ”€β”€ tests
|   |   |   |   |   β”œβ”€β”€ actions.test.js
|   |   |   |   |   β”œβ”€β”€ index.test.js
|   |   |   |   |   └── reducer.test.js
|   |   |   |   β”œβ”€β”€ actions.js
|   |   |   |   β”œβ”€β”€ constants.js
|   |   |   |   β”œβ”€β”€ index.js
|   |   |   |   β”œβ”€β”€ index.module.scss
|   |   |   |   └── reducer
|   |   |   └── index.js
|   |   β”œβ”€β”€ pages
|   |   β”œβ”€β”€ store
|   |   β”œβ”€β”€ utils
|   |   └── index.js
|   └── styles
β”œβ”€β”€ .eslintignore
β”œβ”€β”€ .eslintrc
β”œβ”€β”€ .gitattributes
└── .gitignore

Scripts

  • npm run setup

    • Installs the application's dependencies
  • npm run test

    • Runs unit tests
  • npm run test:watch

    • Watches for changes to run unit tests
  • npm run build

    • Bundles the application
  • npm run dev

    • Starts webpack development server
  • npm run lint

    • Runs the linter
  • npm run deploy

    • Creates the production ready files within the /server/public folder
  • npm run clean

    • Removes the bundled code and the production ready files
  • npm run serve:bundle

    • Serve production assets from the /server/public folder.

Generators

The boilerplate contains generators for easy project scaffolding. At the moment, the generator has the following scaffold generating commands built in:

  • Container npm run generate:container
    • Name: the name of the container, i.e. Awesome, which converts to: AwesomeContainer
    • Connected / Not connected ES6 Class containers (higher order)
    • SCSS Modules
    • Reducers, actions and constants
    • GraphQL: The generator can add collocated queries and mutations using GraphQL / ApolloClient. Accept the option to use this feature.
    • Tests for all of the above
    • README.md file that documents the container
  • Component npm run generate:component
    • Name: the name of the component, i.e. Button
    • Stateless functional components (recommended)
    • ES6 class components
    • SCSS modules
    • Tests for all of the above
    • README.md file that documents the component
  • Page npm run generate:page
    • Name: The name of the route, i.e. Home, which gets converted to HomePage
    • Route: the route that corresponds to the page
    • Container Import: Most of the time, a Route exists only to import a container by the same name. This is enabled by default, so make sure to run the container generator if you want to use this feature.

To run the generators with a list of options, run

npm run generate

Follow the on screen prompts to select the options you wish to use.

For convenience, you can bypass the initial selection and scaffold out containers, components and pages by running

npm run generate:<type_of_component>

where <type_of_component> is one of: component, container or page.

The generators use the same feature-first file organization as the rest of the project, encapsulating components within their own folder.

Gotchas

In order to get the import / export to work, the generator does some pattern matching of the comments in the files to place the new imports. Just don't delete the any comment that is prefixed with GENERATOR and things will work great.

From app/src/container/index.js or app/src/component/index.js

/* GENERATOR: Assemble all containers for export */
export LandingContainer from './LandingContainer';
export AppContainer from './AppContainer';

Configuring your own generators

For information on how to build your own generators with relative ease, please go to the Plop Microgenerator homepage for detailed instructions.

Testing

Included in the setup is a test suite that will run your tests using Jest. A number of testing utilities are included, including

  • Expect (Plus Expect-JSX)
  • Chai (JSX and Immutable)
  • Enzyme
  • Jest & enzyme-to-json in order to use the Jest snappshotting with Enzyme.

You can see examples for testing of React Components, Redux Action Creators and Reducers in the repository here. Please follow the convention of naming tests with a .test.js postfix, or else the test suite will not recognize your tests.

To run tests, you will run

npm run test

which will pick up any file with the .test.js postfix and run it through Jest.

Technologies / Libraries

Timeline / TODOS

  • Write README file
  • Write component tests using Enzyme
  • Implement a Rails like component generator
  • Add README.md files to each component
  • Add Grommet as an optional starter component library
  • Add Webpack stats plugin
  • Dogfood the project and iterate on suggestions
  • Setup production server configuration
  • Add Jest as testing utility
  • Incporporate Server Rendering
  • Create Docker container & automation scripts
  • Write wiki / other documentation

Acknowledgements

Udacity Alumni Loves React

This boilerplate began its life as a fork of the React Redux Simple Starter project and was setup as a starter project for the Udacity Alumni Web application open-source project.

It was created by several of the members of the Udacity Alumni product infrastructure team, including:

Many thanks to the team behind React Boilerplate, especially @maxstbr for setting a standard for the level of quality we in the React community can all learn from. Many of the ideas used here were reverse engineered from the same project.

About

⭐ Scalable feature-first React boilerplate and component generator made for Udacity Alumni collaborative projects

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.3%
  • HTML 1.7%