Domenic Denicola (2014-01-30T02:51:14.000Z)
domenic at domenicdenicola.com (2014-02-04T20:54:50.904Z)
I would really encourage you to read the spec grammar. > ```js > export foo(); > ``` This is not allowed by the grammar; there is no form `export <expression>` > ```js > export default let a = [thing1, thing2]; > ``` This is not allowed by the grammar; `let a = [thing1, thing2]` is not an AssignmentExpression. > ```js > let app = module.exports = require('express')(); > ``` Try ```js import express from "express"; let app = express(); export default app; ```