Posted 2021-10-02Updated 2021-10-02Node.js5 minutes read (About 766 words)解决 Node.js 项目报 SyntaxError: Unexpected token ... 错误问题我们的天猫精灵服务是用 Node.js 做的。 今天在该项目中添加一个包nzh,我是在 package.json 里面直接添加的,然后运行 npm install,运行后会安装nzh包,同时也会更新其他需要更新的包。 然后 Debug,测试通过没有问题,接着发布到服务器上。服务器上运行 forever start xx.js,竟然 stopped。 看了下log,竟然报错了,测试环境没有问题,生产环境却报错了。 Spread operator, Node.js, nRead more
2023-04-21Python3 报错 dyld cache '/System/Library/dyld/dyld_shared_cache_x86_64h' not loaded: syscall to map cache into shared region failedPython