We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05e3135 commit 2ebe05bCopy full SHA for 2ebe05b
README.md
@@ -1,6 +1,27 @@
1
jquery-file-upload-middleware
2
=============================
3
4
+### especially for express
5
+
6
+````
7
+ app = express()
8
9
+ upload = require('jquery-file-upload-middleware')
10
11
+ upload.configure({
12
+ uploadDir: __basename + '/public/files',
13
+ uploadUrl: '/uploads',
14
+ imageVersions: {
15
+ thumbnail: {
16
+ width: 80,
17
+ height: 80
18
+ }
19
20
+ });
21
22
+ upload.init '/upload', app
23
24
25
### Personal Patch Repository
26
27
Please comeback [Aleksandr Guidrevitch](http://aguidrevitch.blogspot.com/) lol
0 commit comments