1.1常規配置
// .vscode/launch.json",
"runtimeexecutable"
:"npm"
,"windows":,
// 啟動我們的 egg-bin debug 並預設是 brk
"runtimeargs":[
"run"
,"debug"
,"--"
,"--inspect-brk"],
// 日誌輸出到 terminal,否則啟動期的日誌看不到
"console"
:"integratedterminal"
,"protocol"
:"auto"
,// 程序重啟後自動 attach
"restart"
:true
,// 因為無需再 proxy,故改回原來的 9229 埠
"port"
:9229
,// 自動 attach 子程序
"autoattachchildprocesses"
:true}]
}
2.其他
vscode 擴充套件生成的配置裡面,還支援了單元測試的斷點,配置如下:
]}
egg開發筆記(二)為egg中加入redis
2 egg中使用redis 服務端複雜的資料庫查詢會嚴重降低訪問速度,我們需要將一些常用的介面資料進行儲存,使用者在獲取資料的時候,直接將資料從記憶體中讀取,不進行資料庫查詢,可以大大提高伺服器效能。儲存方式主要有檔案儲存和記憶體儲存,檔案儲存通過fs模組寫入讀取txt檔案,不多說 這裡使用redi...
VS外掛程式開發筆記
關於vs外掛程式開發的一篇很懶的筆記。demo demo在這裡 dllreferencepathchanger 微軟官方demo在這裡 vssdk extensibility samples 基本步驟看這裡 visual studio 2015 外掛程式開發 從入門到放棄 visual studio...
iPhone開發筆記(三)
11 iphone中變數值是否等於字串的判斷方法 objective c string1 isequaltostring 123 12 iphone的framework的目錄 mac developer platforms iphoneos.platform developer sdks iphon...