A boilerplate for building React apps with ES6 and webpack.
- React 0.13
- Compilation of ES6 & JSX to ES5
- Jest testing framework
- webpack bundling with react hot loader (as well as html, css & sass loaders)
- Basic flux architecture with app actions, stores and example web API usage
Clone the project and remove the git repository:
git clone --depth=1 https://github.com/badsyntax/react-seed.git my-project
cd my-project
rm -rf .git && git init
npm start
- Build and start the app in dev mode at http://localhost:8000npm test
- Run the testsnpm run build
- Run a production build
### 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';
jest.dontMock('../Menu.jsx');
jest.dontMock('../../MenuItem/MenuItem.jsx');
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).toEqual(2);
});
});
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.config.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.
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.config.js
file.
- Use fat arrows for anonymous functions
- Don't use
var
. Uselet
andconst
.
Updating version:
npm version patch
- Bump versiongit push && git push --tags
- Push to remote
Publishing package:
npm login
- Login to npmnpm publish
- Publish package
This project was initially forked from https://github.com/tcoopman/react-es6-browserify
Copyright (c) 2015 Richard Willis