Toggle navigation
Toggle navigation
This project
Loading...
Sign in
유승근
/
Computer-part-Recommand
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
1
Network
Create a new issue
Commits
Issue Boards
Authored by
Yuseunggeun
2020-06-25 17:00:58 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
94b1f0f2c5c577354fd61a093ae21b709d397385
94b1f0f2
1 parent
0325fdbf
final
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
7 deletions
README.md
routes/index.js
README.md
View file @
94b1f0f
...
...
@@ -20,18 +20,37 @@ npm install
3.
네이버검색 api 키 발급, index.js에 id, secret 입력
```
https://developers.naver.com/products/search/
client_id = 'id';
client_secret = 'secret';
client_id = '입력';
client_secret = '입력';
```
4.
실행
```
node app.js
```
* * *
## 사용방법
예산입력후 추천 버튼 클릭
검색어 입력후 검색 버튼 클릭
각 기능마다 구매링크를 클릭하면 해당물품 판매페이지로 연결
## 라이센스
MIT License
Copyright (c)
[
2020
]
[
Yu Seunggeun
]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
* * *
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
\ No newline at end of file
...
...
routes/index.js
View file @
94b1f0f
...
...
@@ -5,8 +5,8 @@ var fs = require("fs");
var
router
=
express
.
Router
();
//네이버쇼핑 검색 api
var
client_id
=
'
HH0lbvfI3QtlyR7e9tkw
'
;
var
client_secret
=
'
mvPTEsNs7L
'
;
var
client_id
=
'
입력
'
;
var
client_secret
=
'
입력
'
;
var
url
=
"https://www.videocardbenchmark.net/common_gpus.html"
;
//유명한 그래픽카드들의 성능순위
//var Graphic_card = [];
...
...
Please
register
or
login
to post a comment