-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
128 lines (88 loc) · 2.16 KB
/
index.js
File metadata and controls
128 lines (88 loc) · 2.16 KB
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
// const fs=require('fs');
// // try {
// // const data=fs.readFileSync('file.txt','utf8');
// // console.log("this is the file to read:", data);
// // } catch (error) {
// // console.log(error);
// // }
// // Asynchronous reading (promise)
// // const fs = require('fs').promises;
// // fs.readFile('file.txt', 'utf8')
// // .then((data) => {
// // console.log(data);
// // })
// // .catch((err) => {
// // console.error(err);
// // });
// // Asynchronous reading (async/await)
// // const fs = require('fs').promises;
// // async function readFile() {
// // try {
// // const data = await fs.readFile('file.txt', 'utf8');
// // console.log(data);
// // } catch (err) {
// // console.error(err);
// // }
// // }
// // readFile();
// fs.readFile('file.txt', 'utf8', (err, data) => {
// if (err) {
// console.error(err);
// } else {
// console.log(data);
// }
// });
// //creating a simple server
// const http = require('http');
// const server = http.createServer((req, res) =>{
// const url = req.url;
// if(url === '/'){
// res.writeHead(
// 200,
// {
// 'content-type': 'text/plain'
// }
// );
// res.end('Hello, this is your response');
// }
// else if(url === '/signup'){
// res.writeHead(
// 200,
// {
// 'content-type': 'text/plain'
// }
// );
// res.end('this is signup route');
// }
// else if(url === '/login'){
// res.writeHead(
// 200,
// {
// 'content-type': 'text/plain'
// }
// );
// res.end('this is login route');
// }
// else{
// res.writeHead(
// 404,
// {
// 'content-type': 'text/plain'
// }
// );
// res.end(`${url} route does not exist on this server`);
// }
// });
// const port = 5000;
// server.listen(port, () =>{
// console.log(`Server is running on port ${port}...`);
// });
//Update your index.js file
const app = require('./app');
const mongoose=require('mongoose');
require('dotenv').config();
mongoose.connect(process.env.DATABASE_URI).then(()=>{
console.log("Data base connected successfully");
}).catch((err)=>{
console.log(err)
})