bandbwelding

0.0.0 • Public • Published

React seed - React router example Build Status

A boilerplate for building React apps with ES6, webpack & react-router.

What you get

  • React 0.13
  • Compilation of ES6 & JSX to ES5
  • webpack module loader with react hot loader (as well as html, css & sass loaders)
  • Karma, mocha, chai & sinon for testing
  • Basic flux architecture with app actions, stores and example web API usage
  • React router (feature/react-router)
  • Material UI (feature/material-ui)

Getting started

Installing with git

git clone --depth=1 https://github.com/badsyntax/react-seed.git my-project
git checkout feature/react-router

Installing with yeoman

  1. npm install -g yo
  2. npm install -g generator-react-seed
  3. Use the generator like so: yo react-seed

npm scripts

  • npm start - Build and start the app in dev mode at http://localhost:8000
  • npm test - Run the tests
  • npm run build - Run a production build

Examples

Writing components:

// Filename: Menu.jsx
 
'use strict';
 
import './_Menu.scss';
 
import React from 'react';
import MenuItem from '../MenuItem/MenuItem';
 
let { PropTypes } = React;
 
class Menu extends React.Component {
 
  constructor(...args) {
    super(...args);
    this.state = {
      foo: false
    };
  }
 
  getMenuItem(item) {
    return (
      <MenuItem item={item} key={'menu-item-' + item.id} />
    );
  }
 
  render() {
    return (
      <ul className={'menu'}>
        {this.props.items.map(this.getMenuItem, this)}
      </ul>
    );
  }
}
 
Menu.propTypes = {
  items: PropTypes.array.isRequired
};
 
export default Menu;

Writing tests:

// Filename: __tests__/Menu-test.js
 
'use strict';
 
import React from 'react/addons';
import Menu from '../Menu.jsx';
 
let { TestUtils } = React.addons;
 
describe('Menu', () => {
 
  let menuItems = [
    { id: 1, label: 'Option 1' },
    { id: 2, label: 'Option 2' }
  ];
 
  let menu = TestUtils.renderIntoDocument(
    <Menu items={menuItems} />
  );
  let menuElem = React.findDOMNode(menu);
 
  it('Renders the menu items', () => {
    expect(menuElem.querySelectorAll('li').length).to.equal(2);
  });
});

Sass, CSS & webpack

import Sass and CSS files from within your JavaScript component files:

// Filename: app.jsx
import 'normalize.css/normalize.css';
import './scss/app.scss';
  • Sass include paths can be adjusted in the webpack/loaders.js file.
  • All CSS (compiled or otherwise) is run through Autoprefixer.
  • CSS files are combined in the order in which they are imported in JavaScript, thus you should always import your CSS/Sass before importing any other JavaScript files.
  • Use an approach like BEM to avoid specificity issues that might exist due to unpredicatable order of CSS rules.

HTML files

All required .html files are compiled with lodash.template and synced into the ./build directory:

// Filename: app.jsx
import './index.html';
  • You can adjust the lodash template data in the webpack/loaders.js file.

Conventions

  • Use fat arrows for anonymous functions
  • Don't use var. Use let and const.

Releasing

  1. npm version patch
  2. git push && git push --tags
  3. npm login (Optional)
  4. npm publish

Credits

This project was initially forked from https://github.com/tcoopman/react-es6-browserify

License

Copyright (c) 2015 Richard Willis

MIT (http://opensource.org/licenses/MIT)

Readme

Keywords

none

Package Sidebar

Install

npm i bandbwelding

Weekly Downloads

1

Version

0.0.0

License

none

Last publish

Collaborators

  • tenhaus