Webpack
A module bundler for modern JavaScript applications
React Props
immutable data passed to your components. They are accessible in your component as an object called this.props
defaultProps
*provides a default so that the rest of your code doesn’t break because it’s undefined.
static defaultProps
*This way it is static an doesn’t get created multiple times. ** I think?
propTypes
*Development time checker for your props. Only works on development mode. Used to check for mistakes in the code.
Installation:
npm install –save prop-types
*Used to alert when there’s a bug floating around in development.