這篇文章將為大家詳細(xì)講解有關(guān)基于go+vue實現(xiàn)的golang每日新聞數(shù)據(jù)瀏覽與檢索平臺,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
成都創(chuàng)新互聯(lián)公司作為成都網(wǎng)站建設(shè)公司,專注成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計,有關(guān)企業(yè)網(wǎng)站制作方案、改版、費用等問題,行業(yè)涉及食品包裝袋等多個領(lǐng)域,已為上千家企業(yè)服務(wù),得到了客戶的尊重與認(rèn)可。
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é)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。