-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
87 lines (77 loc) · 2.17 KB
/
server.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
const express = require("express");
const cors = require("cors");
const { createClient } = require("@supabase/supabase-js");
const app = express();
const port = process.env.PORT || 3000;
// Configura CORS (opcional)
app.use(cors());
// Middleware para parsear el cuerpo de las solicitudes como JSON
app.use(express.json());
// Inicializa Supabase
const supabaseUrl = "https://cqrallbhjbcavflvsuya.supabase.co";
const supabaseKey =
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImNxcmFsbGJoamJjYXZmbHZzdXlhIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MzcwMzkxMTcsImV4cCI6MjA1MjYxNTExN30.McZrsR8krRNivqrFKf801KzZEDwkC3r9rKr0vgtrarY";
const supabase = createClient(supabaseUrl, supabaseKey);
// Endpoint de prueba
app.get("/", (req, res) => {
res.send("Hello, world!");
});
// Endpoint para obtener todos los developers
app.get("/developers", async (req, res) => {
try {
const { data, error } = await supabase.from("developers").select("*");
if (error) {
console.error("Supabase error:", error);
throw error;
}
res.status(200).json(data);
} catch (err) {
console.error("Fetch failed:", err);
res.status(500).json({ error: err.message });
}
});
// Endpoint para agregar un nuevo developer
app.post("/developers", async (req, res) => {
try {
const {
full_name,
age,
birth_date,
phone_number,
nacionality,
summary,
stack,
main_stack_technology,
profile_image,
linkedin_profile,
github_profile,
} = req.body;
const { data, error } = await supabase.from("developers").insert([
{
full_name,
age,
birth_date,
phone_number,
nacionality,
summary,
stack,
main_stack_technology,
profile_image,
linkedin_profile,
github_profile,
},
]);
if (error) {
console.error("Supabase error:", error);
throw error;
}
res.status(201).json(data);
} catch (err) {
console.error("Fetch failed:", err);
res.status(500).json({ error: err.message });
}
});
// Inicia el servidor
app.listen(port, () => {
console.log(`Server running at http://localhost:${port}`);
});