nodejs基础 nodejs允许自己封装模块,使得编写程序可以模块化,便于维护整理.在一个js文件中写完封装的函数或对象后,可以使用exports或module.exports来将模块中的函数暴露给程序,使得整个程序可以使用,如: function HelloWorld() { return 'Hello, node-js!'; } module.exports.HelloWorld = HelloWorld; 要使用其他模块中的方法时,需要使用require来导入模块,如: const ht…