김동진

create gitignore

1 +# Logs
2 +logs
3 +*.log
4 +npm-debug.log*
5 +yarn-debug.log*
6 +yarn-error.log*
7 +lerna-debug.log*
8 +# Diagnostic reports (https://nodejs.org/api/report.html)
9 +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
10 +# Runtime data
11 +pids
12 +*.pid
13 +*.seed
14 +*.pid.lock
15 +# Directory for instrumented libs generated by jscoverage/JSCover
16 +lib-cov
17 +# Coverage directory used by tools like istanbul
18 +coverage
19 +*.lcov
20 +# nyc test coverage
21 +.nyc_output
22 +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
23 +.grunt
24 +# Bower dependency directory (https://bower.io/)
25 +bower_components
26 +# node-waf configuration
27 +.lock-wscript
28 +# Compiled binary addons (https://nodejs.org/api/addons.html)
29 +build/Release
30 +# Dependency directories
31 +node_modules/
32 +jspm_packages/
33 +# Snowpack dependency directory (https://snowpack.dev/)
34 +web_modules/
35 +# TypeScript cache
36 +*.tsbuildinfo
37 +# Optional npm cache directory
38 +.npm
39 +# Optional eslint cache
40 +.eslintcache
41 +# Microbundle cache
42 +.rpt2_cache/
43 +.rts2_cache_cjs/
44 +.rts2_cache_es/
45 +.rts2_cache_umd/
46 +# Optional REPL history
47 +.node_repl_history
48 +# Output of 'npm pack'
49 +*.tgz
50 +# Yarn Integrity file
51 +.yarn-integrity
52 +# dotenv environment variables file
53 +.env
54 +.env.test
55 +# parcel-bundler cache (https://parceljs.org/)
56 +.cache
57 +.parcel-cache
58 +# Next.js build output
59 +.next
60 +out
61 +# Nuxt.js build / generate output
62 +.nuxt
63 +dist
64 +# Gatsby files
65 +.cache/
66 +# Comment in the public line in if your project uses Gatsby and not Next.js
67 +# https://nextjs.org/blog/next-9-1#public-directory-support
68 +# public
69 +# vuepress build output
70 +.vuepress/dist
71 +# Serverless directories
72 +.serverless/
73 +# FuseBox cache
74 +.fusebox/
75 +# DynamoDB Local files
76 +.dynamodb/
77 +# TernJS port file
78 +.tern-port
79 +# Stores VSCode versions used for testing VSCode extensions
80 +.vscode-test
81 +# yarn v2
82 +.yarn/cache
83 +.yarn/unplugged
84 +.yarn/build-state.yml
85 +.yarn/install-state.gz
86 +.pnp.*
87 +package-lock.json
...\ No newline at end of file ...\ No newline at end of file
...@@ -90,7 +90,7 @@ exports.foodInfo_search = function(request, response){ ...@@ -90,7 +90,7 @@ exports.foodInfo_search = function(request, response){
90 <br> 90 <br>
91 ${search}(으)로 검색된 결과 : ${num} 91 ${search}(으)로 검색된 결과 : ${num}
92 ${foodTable(foodInfo, list, num)} 92 ${foodTable(foodInfo, list, num)}
93 - 93 + <br><br><br><br>
94 `); 94 `);
95 response.writeHead(200); 95 response.writeHead(200);
96 response.end(html); 96 response.end(html);
......
...@@ -288,6 +288,7 @@ exports.searchGym = function(request, response){ ...@@ -288,6 +288,7 @@ exports.searchGym = function(request, response){
288 } 288 }
289 } 289 }
290 </script> 290 </script>
291 + <br><br><br>
291 `); 292 `);
292 response.writeHead(200); 293 response.writeHead(200);
293 response.end(html); 294 response.end(html);
......