05 2022 档案
摘要:export let a = 1 export let c = 2 export let d = 3 export default { 'name': 'makuo', 'age':18 } #浏览器导入 <script type="module"> import m3 from './a.js'
阅读全文
摘要:// a.js a=1 b=2 // 暴露单个对象或数据 // module.exports=a // 暴露对象 module.exports={ a, b } // b.js a=require('./a.js') console.log(a)
阅读全文
摘要:macos Monterey 无法安装hp打印机驱动,提示不支持 macos Monterey系统,修改验证内容,绕过验证 #!/bin/bash # 下载hp驱动的dmg文件 curl -o ./HPDriver5.1.dmg https://updates.cdn-apple.com/2020/
阅读全文
摘要:npm list -g # 查看全局安装的包 npm root -g # 查看全局包的位置
阅读全文