-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 872 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 872 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
28
29
30
31
32
33
{
"name": "file-client-server-operations",
"version": "1.0.0",
"description": "An express server to demonstrate working with files like png/jpg/pdf/* , sharing between client and server, streaming data versus pre-loading data , statically versus manually serving files, small files versus Bigger files, Reducing response time.",
"main": "app.js ",
"scripts": {
"start": "nodemon ./app.js"
},
"keywords": [
"file-architecture",
"files",
"express",
"fs",
"streaming",
"preloading",
"images",
"pdf",
"static",
"static-file-serving",
"optimization",
"pipe"
],
"author": "Harshit Bhawsar",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"multer": "^1.4.5-lts.1",
"pdfkit": "^0.13.0"
}
}