-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
27 lines (21 loc) · 721 Bytes
/
server.js
File metadata and controls
27 lines (21 loc) · 721 Bytes
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
global.fetch = require("node-fetch");
const config = require("universal-config");
const Unsplash = require("unsplash-js").default;
const toJson = require("unsplash-js").toJson;
const express = require("express");
var cors = require("cors");
const unsplash = new Unsplash({
applicationId: config.get("APPLICATION_ID"),
secret: config.get("SECRET"),
callbackUrl: config.get("CALLBACK_URL"),
});
const app = express();
app.use(cors());
app.get("/api/photos", (req, res) => {
unsplash.photos
.listPhotos(req.query.start, req.query.count)
.then(toJson)
.then((json) => res.json(json));
});
const PORT = process.env.PORT || 5000;
app.listen(PORT, () => console.log(`Server started on port ${PORT}`));