Skip to content

Instantly share code, notes, and snippets.

@goooooouwa
Last active July 21, 2025 04:25
Show Gist options
  • Select an option

  • Save goooooouwa/488fb6a7df0a688f0855cd57112005de to your computer and use it in GitHub Desktop.

Select an option

Save goooooouwa/488fb6a7df0a688f0855cd57112005de to your computer and use it in GitHub Desktop.
nodejs basic module syntax #nodejs #module #javascript
// in module1.js
function a(){
console.log('hello');
}
module.exports.a = a;
// in module2.js
const module1 = require('./module1.js');
file1.a();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment