What is difference between module.exports and export in JS?

What is difference between module.exports and export in JS?

At the beginning, both of them are references to the same (or empty) object. But only module.exports will be returned in JavaScript.