ES6 Best Practices Use const always when you do not want to change the type of a variable. https://mathiasbynens.be/notes/es6-const To export class use, export default ClassName.