您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)基于go+vue實現(xiàn)的golang每日新聞數(shù)據(jù)瀏覽與檢索平臺,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
golang可以做服務(wù)器端開發(fā),但golang很適合做日志處理、數(shù)據(jù)打包、虛擬機處理、數(shù)據(jù)庫代理等工作。在網(wǎng)絡(luò)編程方面,它還廣泛應(yīng)用于web應(yīng)用、API應(yīng)用等領(lǐng)域。
gonews是基于 go+vue 實現(xiàn)的golang每日新聞瀏覽與檢索平臺
項目地址: Github
線上Demo:GoNews
數(shù)據(jù)來源: GoCN每日新聞
項目截圖
部署
獲取新聞數(shù)據(jù)
git clone https://github.com/gocn/news /data/news
獲取源碼
go get -u github.com/mikemintang/gonews
解析數(shù)據(jù)
nohup gonews -d /data/news > /data/log/gonews.log 2>&1
啟動Api
nohup gonews -a api -p 8017 > /data/log/gonews.log 2>&1 &
前端部署
cd $GOPATH/src/github.com/mikemintang/gonews/web npm install npm run build
Nginx配置
server { listen 80; server_name gonews.idoubi.cc; index index.html index.htm index.php; root /data/go/src/mikemintang/gonews/web; location /api { rewrite ^.+api/?(.*)$ /$1 break; proxy_pass http://127.0.0.1:8017; } }
Shell腳本
#!/bin/sh cd /data/news git pull origin master nohup gonews -d /data/news/ > /data/log/gonews.log 2>&1
定時任務(wù)
crontab -e */10 * * * * /bin/sh /data/shell/cache_news.sh
用到的技術(shù)
golang包
github.com/go-redis/redis encoding/json flag net/http net/url strconv sync crypto/md5 fmt io io/ioutil net/url os path/filepath regexp strconv strings time
關(guān)于“基于go+vue實現(xiàn)的golang每日新聞數(shù)據(jù)瀏覽與檢索平臺”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。