-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile1.js
150 lines (117 loc) · 3.38 KB
/
file1.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
// ÖDEV 1
//node file1.js 3
// let yaricap = process.argv[2];
// yaricap = Number(yaricap);
// let alan = Math.PI * yaricap + yaricap;
// console.log(`Yarıçapı ${yaricap} olan dairenin alanı: ${alan}`);
//
//
//
// ÖDEV 2
// Kodu direk çalıştırabilirsiniz
// const posts = [
// { id: 1, postName: 'Post 1', message: 'İlk mesaj' },
// { id: 2, postName: 'Post 2', message: 'İkinci mesaj' },
// { id: 3, postName: 'Post 3', message: 'Üçüncü mesaj' }
// ];
// const postList = () => {
// console.table(posts);
// };
// const addPost = (newPost) => {
// return new Promise((resolve, reject) => {
// if (newPost) {
// posts.push(newPost);
// resolve(posts);
// } else {
// reject('Post not Added');
// }
// });
// };
// async function getPostList() {
// try {
// await addPost({ id: 4, postName: "Post 4", message: "Dördüncü mesaj" });
// postList();
// } catch (error) {
// console.log(error);
// }
// }
// getPostList();
//
//
//
// ÖDEV 3
// import { circleArea, circleCircumference } from './circle.js';
// circleArea(5)
// circleCircumference(5)
//
//
//
// ÖDEV 4
// CRUD işlemlerini tek tek çalıştırın
// import { writeFile, readFile, unlink } from 'fs/promises';
// CREATE
// let employees = { "name": "Employee 1 Name", "salary": 2000 };
// await writeFile('employees.json', JSON.stringify(employees), 'utf8');
// READ
// let data = await readFile('employees.json', 'utf8');
// employees = JSON.parse(data);
// console.log(employees);
// UPDATE
// employees.salary = 3000;
// await writeFile('employees.json', JSON.stringify(employees), 'utf8');
// DELETE
// await unlink('employees.json');
//
//
//
// ÖDEV 5
// import http from 'http';
// const server = http.createServer((req, res) => {
// switch (req.url) {
// case '/':
// res.writeHead(200, { 'Content-Type': 'text/html' });
// res.write('<h2>Index sayfasına hoşgeldiniz</h2>');
// break;
// case '/hakkimda':
// res.writeHead(200, { 'Content-Type': 'text/html' });
// res.write('<h2>Hakkımda sayfasına hoşgeldiniz</h2>');
// break;
// case '/iletisim':
// res.writeHead(200, { 'Content-Type': 'text/html' });
// res.write('<h2>İletişim sayfasına hoşgeldiniz</h2>');
// break;
// default:
// res.writeHead(404, { 'Content-Type': 'text/html' });
// res.write('<h2>Sayfa bulunamadı</h2>');
// break;
// }
// res.end();
// });
// const port = 5000;
// server.listen(port, () => {
// console.log(`Sunucu http://localhost:${port} adresinde başlatıldı`);
// });
//
//
//
// ÖDEV 6
// import Koa from 'koa';
// import Router from 'koa-router';
// const app = new Koa();
// const router = new Router();
// router.get('/', ctx => {
// ctx.body = '<h1>KOA | Index sayfasına hoşgeldiniz</h1>';
// });
// router.get('/hakkimda', ctx => {
// ctx.body = '<h1>Hakkımda sayfasına hoşgeldiniz</h1>';
// });
// router.get('/iletisim', ctx => {
// ctx.body = '<h1>İletişim sayfasına hoşgeldiniz</h1>';
// });
// app.use(router.routes()).use(router.allowedMethods());
// const port = 3000;
// app.listen(port, () => console.log(`Sunucu http://localhost:${port} adresinde çalışıyor.`));
//
//
//
// ÖDEV 7