1 注册一个npm账号 npm https://www.npmjs.com/ 2 初始化一个npm 项目 npm init -y 3编写一段代码 function fn(){ return 1+2 } exports.hello=fn; </