随笔分类 -  Node

摘要:let arg = ['/c', 'abs:/path/what.bat'] let result = spawn('cmd', arg, { stdio: 'pipe', encoding: 'utf-8', maxBuffer: 100 * 1024 * 1024 }) let sout = S 阅读全文
posted @ 2023-03-09 14:54 fndefbwefsowpvqfx
摘要:使用 nvm 管理不同版本的 node 与 npm https://www.runoob.com/w3cnote/nvm-manager-node-versions.html 阅读全文
posted @ 2021-07-26 10:30 fndefbwefsowpvqfx
摘要:https://github.com/sindresorhus/awesome-nodejs Contents Packages Mad science Command-line apps Functional programming HTTP Debugging / Profiling Loggi 阅读全文
posted @ 2020-12-18 17:20 fndefbwefsowpvqfx
摘要:https://github.com/sindresorhus/awesome-nodejs https://github.com/zerolab-fe/awesome-nodejs AI brain.js - 基于模型训练的神经网络 JS 库,支持浏览器和 Node tfjs - TensorFl 阅读全文
posted @ 2020-11-05 11:08 fndefbwefsowpvqfx
摘要:https://github.com/octalmage/robotjs https://github.com/ccampbell/mousetrap https://github.com/shelljs/shelljs https://github.com/vercel/pkg https://g 阅读全文
posted @ 2020-11-05 10:37 fndefbwefsowpvqfx
摘要:import net from 'net'; for(let i=1;i<=65535;++i){ setTimeout( ()=>{ let server:any = net.createServer(); server.once('error', (err : any)=> {if (err.c 阅读全文
posted @ 2020-11-05 09:31 fndefbwefsowpvqfx
摘要:目录下的文件 build-node-addon-api-with-cmake.node CMakeLists.txt hello.cc hello.js package.json build-node-addon-api-with-cmake.node 为 npm run install后生成的 n 阅读全文
posted @ 2020-11-04 12:29 fndefbwefsowpvqfx