2019年5月29日 星期三

安裝 npm forever 會遇到的小問題

安裝 forever
npm install forever -g
接著 forever start your_node_code.js
就可以在背景一直執行(不會因為terminal 關閉而結束)

但是有可能會遇到 forever: command not found 的問題

這時候的解決方法就是想辦法找到你的 forever 被安裝在哪裡,然後用 ln 的方式導到你的 /usr/bin/ 下使用

以我的例子
先用 npm get prefix 找到npm 的位置
/volume1/@appstore/Node.js_v8/usr/local

然後發現forever package其實被安裝在
/volume1/@appstore/Node.js_v8/usr/local/lib/node_modules/forever/bin/forever

於是我們將它link起來以便隨地使用
sudo ln -s /volume1/\@appstore/Node.js_v8/usr/local/lib/node_modules/forever/bin/forever /usr/bin/forever

收工

後記。
發現有可能把 $PATH 加入即可
export PATH=$PATH:/volume1/@appstore/Node.js_v8/usr/local/bin

2019年5月25日 星期六

Using Linux Crontab example

If you want to execute some task in every 5 minutes?
如果想在 Linux 中定時執行某些任務?
crontab -l    // see the list of crontab
crontab -e    // edit current crontab

Example situations: Sync up system time every 5 minutes.
Create a file /root/synctime.sh and set 775, the synctime.sh execute your update logic then which execute every 5 mins
*/5 * * * * /root/synctime.sh


Here is a online crontab exerciser (這裡有個線上 crontab 的練習器)
https://crontab.guru/every-weekday

2019年5月6日 星期一

[Git] 在 TortoiseGit 裡記憶專案密碼

也許你也覺得每次 pull/push 程式碼就要重新輸入一次密碼好煩?來,以下教你如何用 TortoiseGit 記憶專案密碼。

1。首先,右鍵點選專案裡的 [Settings]


2。移到 Credential 頁面,Config Type 選擇 Local,然後填入你 Repository 的 URL,Helper是指認真的工具,在此選 manager,將會以微軟內建對話框詢問。(若忘記專案網址,可用指令查詢: git config --get remote.origin.url


就這麼簡單。