Yuseunggeun

final

......@@ -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
......
......@@ -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 = [];
......