DEV Community

Sogo Jonathan
Sogo Jonathan

Posted on

CommonJs in simple language

All lines of codes has different distinct standards of writing them and Javascript is of no different, hence come the ConnonJs standard which was the older way of structuring js modules.

The coomonJs comes with a method of sharing data using the export and require keywords in a different syntax;

const userDATA = () => {
    return "user info"
}

module.exports = {
    userDATA
}
Enter fullscreen mode Exit fullscreen mode

This lines of codes showing that you want to export the data containing the userDATA while,

const {userDATA} = require ("./index.js")

console.log (userDATA())
Enter fullscreen mode Exit fullscreen mode

is the syntax to import the data to another module.

commonJs is commonly used while using the Node.js for building your server side applications {API}.

Checkout my next post on the newest standard of defining your modules.

Top comments (0)