Yuseunggeun

final

...@@ -20,18 +20,37 @@ npm install ...@@ -20,18 +20,37 @@ npm install
20 3. 네이버검색 api 키 발급, index.js에 id, secret 입력 20 3. 네이버검색 api 키 발급, index.js에 id, secret 입력
21 ``` 21 ```
22 https://developers.naver.com/products/search/ 22 https://developers.naver.com/products/search/
23 -client_id = 'id'; 23 +client_id = '입력';
24 -client_secret = 'secret'; 24 +client_secret = '입력';
25 -
26 ``` 25 ```
27 4. 실행 26 4. 실행
28 ``` 27 ```
29 node app.js 28 node app.js
30 ``` 29 ```
31 30
32 -* * *
33 ## 사용방법 31 ## 사용방법
34 예산입력후 추천 버튼 클릭 32 예산입력후 추천 버튼 클릭
35 검색어 입력후 검색 버튼 클릭 33 검색어 입력후 검색 버튼 클릭
34 +각 기능마다 구매링크를 클릭하면 해당물품 판매페이지로 연결
35 +## 라이센스
36 +MIT License
37 +
38 +Copyright (c) [2020] [Yu Seunggeun]
39 +
40 +Permission is hereby granted, free of charge, to any person obtaining a copy
41 +of this software and associated documentation files (the "Software"), to deal
42 +in the Software without restriction, including without limitation the rights
43 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
44 +copies of the Software, and to permit persons to whom the Software is
45 +furnished to do so, subject to the following conditions:
46 +
47 +The above copyright notice and this permission notice shall be included in all
48 +copies or substantial portions of the Software.
36 49
37 -* * * 50 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
51 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
52 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
53 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
54 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
55 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
56 +SOFTWARE.
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -5,8 +5,8 @@ var fs = require("fs"); ...@@ -5,8 +5,8 @@ var fs = require("fs");
5 var router = express.Router(); 5 var router = express.Router();
6 6
7 //네이버쇼핑 검색 api 7 //네이버쇼핑 검색 api
8 -var client_id = 'HH0lbvfI3QtlyR7e9tkw'; 8 +var client_id = '입력';
9 -var client_secret = 'mvPTEsNs7L'; 9 +var client_secret = '입력';
10 10
11 var url = "https://www.videocardbenchmark.net/common_gpus.html"; //유명한 그래픽카드들의 성능순위 11 var url = "https://www.videocardbenchmark.net/common_gpus.html"; //유명한 그래픽카드들의 성능순위
12 //var Graphic_card = []; 12 //var Graphic_card = [];
......