<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>μ¬ν κ³ν μμ±κΈ°</title>
<style>
#planForm {
display: flex;
npm init -y # package.json
npm install express
npm install -D nodemon
# .gitignore
node_modules/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require("express"); // npm install express | |
// tailwind, bootstrap -> μμ‘΄μ±. μ€μΉ. | |
const app = express(); // κ°μ²΄ | |
const port = 3000; | |
// Get -> Fetch, Get/Post | |
app.get("/", (req, res) => { // localhost:3000/ -> GET/μ μ (λΈλΌμ°μ λ₯Ό ν΅ν μ μ) | |
// res.send("Hello World!"); | |
res.send("Bye Earth!"); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Groq API</title> | |
</head> | |
<body> | |
<section> | |
<label>API KEY : <input type="text" id="apiKey" /></label><br /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Gemini API</title> | |
</head> | |
<body> | |
<label>API KEY : <input type="text" id="apiKey" /></label> | |
<button id="callBtn">νΈμΆ</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Poke</title> | |
</head> | |
<body> | |
<script> | |
// 1. APIμμ λ°μ΄ν° νΈμΆνκΈ° |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>λ©λͺ¨ μ±</title> | |
<style> | |
.memo { | |
margin: 12px; | |
border: 1px solid gray; |
π μλ‘μ΄ κΈ°μ μ λ°°μ°κ³ μ μ©νλ κ²μ μ¦κΈ°λ©°, λλ£μ ν¨κ» μ±μ₯νλ κ²μ μ€μνκ² μκ°ν©λλ€.
π‘ μ£Όμ΄μ§ λ¬Έμ λ₯Ό ν΄κ²°νκΈ° μν΄ λμμμ΄ κ³ λ―Όνκ³ , λ λμ μ½λλ₯Ό λ§λ€κΈ° μν΄ λ Έλ ₯ν©λλ€.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Bootstrap</title> | |
<!-- https://getbootstrap.com/ --> | |
<!-- link, script -> ꡬννλλ° νμν μμ‘΄μ±μ μ°κ²° --> | |
<link | |
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>μλ νμΈμ [κΉκ°λ°]μ λλ€</title> | |
<!-- favicon --> | |
<!-- og tag --> | |
<style> | |
/* ν°νΈ */ |