实例介绍
文件上传是一个比较常见的功能,传统的选择方式的上传比较麻烦,需要先点击上传按钮,然后再找到文件的路径,然后上传。给用户体验带来很大问题。html5开始支持拖拽上传的需要的api。nodejs也是一个最近越来越流行的技术,这也是自己第一次接触nodejs,在nodejs开发中,最常用的开发框架之一是expess,它是一个类似mvc模式的框架。结合html5、nodejs express实现了拖拽上传的功能。
【实例截图】
【核心代码】
4744302543467517451.rar
├── app.js
├── config.js
├── node_modules
│ ├── ejs
│ │ ├── benchmark.js
│ │ ├── ejs.js
│ │ ├── ejs.min.js
│ │ ├── examples
│ │ │ ├── client.html
│ │ │ ├── functions.ejs
│ │ │ ├── functions.js
│ │ │ ├── list.ejs
│ │ │ └── list.js
│ │ ├── History.md
│ │ ├── index.js
│ │ ├── lib
│ │ │ ├── ejs.js
│ │ │ ├── filters.js
│ │ │ └── utils.js
│ │ ├── Makefile
│ │ ├── package.json
│ │ ├── Readme.md
│ │ ├── support
│ │ │ └── compile.js
│ │ └── test
│ │ ├── ejs.js
│ │ └── fixtures
│ │ ├── backslash.ejs
│ │ ├── backslash.html
│ │ ├── comments.ejs
│ │ ├── comments.html
│ │ ├── double-quote.ejs
│ │ ├── double-quote.html
│ │ ├── error.ejs
│ │ ├── error.out
│ │ ├── fail.ejs
│ │ ├── include.css.ejs
│ │ ├── include.css.html
│ │ ├── include.ejs
│ │ ├── include.html
│ │ ├── includes
│ │ │ ├── menu
│ │ │ │ └── item.ejs
│ │ │ └── menu-item.ejs
│ │ ├── menu.ejs
│ │ ├── menu.html
│ │ ├── messed.ejs
│ │ ├── messed.html
│ │ ├── newlines.ejs
│ │ ├── newlines.html
│ │ ├── no.newlines.ejs
│ │ ├── no.newlines.html
│ │ ├── para.ejs
│ │ ├── pet.ejs
│ │ ├── single-quote.ejs
│ │ ├── single-quote.html
│ │ ├── style.css
│ │ └── user.ejs
│ ├── express
│ │ ├── bin
│ │ │ └── express
│ │ ├── History.md
│ │ ├── index.js
│ │ ├── lib
│ │ │ ├── application.js
│ │ │ ├── express.js
│ │ │ ├── middleware.js
│ │ │ ├── request.js
│ │ │ ├── response.js
│ │ │ ├── router
│ │ │ │ ├── index.js
│ │ │ │ └── route.js
│ │ │ ├── utils.js
│ │ │ └── view.js
│ │ ├── LICENSE
│ │ ├── Makefile
│ │ ├── node_modules
│ │ │ ├── buffer-crc32
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── README.md
│ │ │ │ └── tests
│ │ │ │ └── crc.test.js
│ │ │ ├── commander
│ │ │ │ ├── History.md
│ │ │ │ ├── index.js
│ │ │ │ ├── node_modules
│ │ │ │ │ └── keypress
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── test.js
│ │ │ │ ├── package.json
│ │ │ │ └── Readme.md
│ │ │ ├── connect
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── cache.js
│ │ │ │ │ ├── connect.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── middleware
│ │ │ │ │ │ ├── basicAuth.js
│ │ │ │ │ │ ├── bodyParser.js
│ │ │ │ │ │ ├── compress.js
│ │ │ │ │ │ ├── cookieParser.js
│ │ │ │ │ │ ├── cookieSession.js
│ │ │ │ │ │ ├── csrf.js
│ │ │ │ │ │ ├── directory.js
│ │ │ │ │ │ ├── errorHandler.js
│ │ │ │ │ │ ├── favicon.js
│ │ │ │ │ │ ├── json.js
│ │ │ │ │ │ ├── limit.js
│ │ │ │ │ │ ├── logger.js
│ │ │ │ │ │ ├── methodOverride.js
│ │ │ │ │ │ ├── multipart.js
│ │ │ │ │ │ ├── query.js
│ │ │ │ │ │ ├── responseTime.js
│ │ │ │ │ │ ├── session
│ │ │ │ │ │ │ ├── cookie.js
│ │ │ │ │ │ │ ├── memory.js
│ │ │ │ │ │ │ ├── session.js
│ │ │ │ │ │ │ └── store.js
│ │ │ │ │ │ ├── session.js
│ │ │ │ │ │ ├── staticCache.js
│ │ │ │ │ │ ├── static.js
│ │ │ │ │ │ ├── timeout.js
│ │ │ │ │ │ ├── urlencoded.js
│ │ │ │ │ │ └── vhost.js
│ │ │ │ │ ├── patch.js
│ │ │ │ │ ├── proto.js
│ │ │ │ │ ├── public
│ │ │ │ │ │ ├── directory.html
│ │ │ │ │ │ ├── error.html
│ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ ├── page_add.png
│ │ │ │ │ │ │ ├── page_attach.png
│ │ │ │ │ │ │ ├── page_code.png
│ │ │ │ │ │ │ ├── page_copy.png
│ │ │ │ │ │ │ ├── page_delete.png
│ │ │ │ │ │ │ ├── page_edit.png
│ │ │ │ │ │ │ ├── page_error.png
│ │ │ │ │ │ │ ├── page_excel.png
│ │ │ │ │ │ │ ├── page_find.png
│ │ │ │ │ │ │ ├── page_gear.png
│ │ │ │ │ │ │ ├── page_go.png
│ │ │ │ │ │ │ ├── page_green.png
│ │ │ │ │ │ │ ├── page_key.png
│ │ │ │ │ │ │ ├── page_lightning.png
│ │ │ │ │ │ │ ├── page_link.png
│ │ │ │ │ │ │ ├── page_paintbrush.png
│ │ │ │ │ │ │ ├── page_paste.png
│ │ │ │ │ │ │ ├── page.png
│ │ │ │ │ │ │ ├── page_red.png
│ │ │ │ │ │ │ ├── page_refresh.png
│ │ │ │ │ │ │ ├── page_save.png
│ │ │ │ │ │ │ ├── page_white_acrobat.png
│ │ │ │ │ │ │ ├── page_white_actionscript.png
│ │ │ │ │ │ │ ├── page_white_add.png
│ │ │ │ │ │ │ ├── page_white_camera.png
│ │ │ │ │ │ │ ├── page_white_cd.png
│ │ │ │ │ │ │ ├── page_white_code.png
│ │ │ │ │ │ │ ├── page_white_code_red.png
│ │ │ │ │ │ │ ├── page_white_coldfusion.png
│ │ │ │ │ │ │ ├── page_white_compressed.png
│ │ │ │ │ │ │ ├── page_white_copy.png
│ │ │ │ │ │ │ ├── page_white_cplusplus.png
│ │ │ │ │ │ │ ├── page_white_c.png
│ │ │ │ │ │ │ ├── page_white_csharp.png
│ │ │ │ │ │ │ ├── page_white_cup.png
│ │ │ │ │ │ │ ├── page_white_database.png
│ │ │ │ │ │ │ ├── page_white_delete.png
│ │ │ │ │ │ │ ├── page_white_dvd.png
│ │ │ │ │ │ │ ├── page_white_edit.png
│ │ │ │ │ │ │ ├── page_white_error.png
│ │ │ │ │ │ │ ├── page_white_excel.png
│ │ │ │ │ │ │ ├── page_white_find.png
│ │ │ │ │ │ │ ├── page_white_flash.png
│ │ │ │ │ │ │ ├── page_white_freehand.png
│ │ │ │ │ │ │ ├── page_white_gear.png
│ │ │ │ │ │ │ ├── page_white_get.png
│ │ │ │ │ │ │ ├── page_white_go.png
│ │ │ │ │ │ │ ├── page_white_horizontal.png
│ │ │ │ │ │ │ ├── page_white_h.png
│ │ │ │ │ │ │ ├── page_white_key.png
│ │ │ │ │ │ │ ├── page_white_lightning.png
│ │ │ │ │ │ │ ├── page_white_link.png
│ │ │ │ │ │ │ ├── page_white_magnify.png
│ │ │ │ │ │ │ ├── page_white_medal.png
│ │ │ │ │ │ │ ├── page_white_office.png
│ │ │ │ │ │ │ ├── page_white_paintbrush.png
│ │ │ │ │ │ │ ├── page_white_paint.png
│ │ │ │ │ │ │ ├── page_white_paste.png
│ │ │ │ │ │ │ ├── page_white_php.png
│ │ │ │ │ │ │ ├── page_white_picture.png
│ │ │ │ │ │ │ ├── page_white.png
│ │ │ │ │ │ │ ├── page_white_powerpoint.png
│ │ │ │ │ │ │ ├── page_white_put.png
│ │ │ │ │ │ │ ├── page_white_ruby.png
│ │ │ │ │ │ │ ├── page_white_stack.png
│ │ │ │ │ │ │ ├── page_white_star.png
│ │ │ │ │ │ │ ├── page_white_swoosh.png
│ │ │ │ │ │ │ ├── page_white_text.png
│ │ │ │ │ │ │ ├── page_white_text_width.png
│ │ │ │ │ │ │ ├── page_white_tux.png
│ │ │ │ │ │ │ ├── page_white_vector.png
│ │ │ │ │ │ │ ├── page_white_visualstudio.png
│ │ │ │ │ │ │ ├── page_white_width.png
│ │ │ │ │ │ │ ├── page_white_word.png
│ │ │ │ │ │ │ ├── page_white_world.png
│ │ │ │ │ │ │ ├── page_white_wrench.png
│ │ │ │ │ │ │ ├── page_white_zip.png
│ │ │ │ │ │ │ ├── page_word.png
│ │ │ │ │ │ │ └── page_world.png
│ │ │ │ │ │ └── style.css
│ │ │ │ │ └── utils.js
│ │ │ │ ├── LICENSE
│ │ │ │ ├── node_modules
│ │ │ │ │ ├── bytes
│ │ │ │ │ │ ├── component.json
│ │ │ │ │ │ ├── History.md
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ └── Readme.md
│ │ │ │ │ ├── multiparty
│ │ │ │ │ │ ├── CHANGELOG.md
│ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ ├── azureblobstorage.js
│ │ │ │ │ │ │ ├── s3.js
│ │ │ │ │ │ │ └── upload.js
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ ├── node_modules
│ │ │ │ │ │ │ ├── readable-stream
│ │ │ │ │ │ │ │ ├── duplex.js
│ │ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ │ ├── CAPSLOCKTYPER.JS
│ │ │ │ │ │ │ │ │ ├── typer-fsr.js
│ │ │ │ │ │ │ │ │ └── typer.js
│ │ │ │ │ │ │ │ ├── float.patch
│ │ │ │ │ │ │ │ ├── fs.js
│ │ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ │ │ │ │ └── _stream_writable.js
│ │ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ │ ├── node_modules
│ │ │ │ │ │ │ │ │ ├── core-util-is
│ │ │ │ │ │ │ │ │ │ ├── float.patch
│ │ │ │ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ │ │ │ │ └── util.js
│ │ │ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ │ │ │ │ └── util.js
│ │ │ │ │ │ │ │ │ └── debuglog
│ │ │ │ │ │ │ │ │ ├── debuglog.js
│ │ │ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ ├── passthrough.js
│ │ │ │ │ │ │ │ ├── readable.js
│ │ │ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ │ │ ├── test
│ │ │ │ │ │ │ │ │ ├── common.js
│ │ │ │ │ │ │ │ │ ├── fixtures
│ │ │ │ │ │ │ │ │ │ └── x1024.txt
│ │ │ │ │ │ │ │ │ └── simple
│ │ │ │ │ │ │ │ │ ├── test-GH-64.js
│ │ │ │ │ │ │ │ │ ├── test-GH-66.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-basic.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-compatibility.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-finish-pipe.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-large-read-stall.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-objects.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-pipe-error-handling.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-pipe-error-once-listener.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-push.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-readable-empty-buffer-no-eof.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-readable-from-list.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-readable-legacy-drain.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-readable-non-empty-end.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-readable-wrap-empty.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-readable-wrap.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-read-sync-stack.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-set-encoding.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-transform.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-unpipe-drain.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-unpipe-leak.js
│ │ │ │ │ │ │ │ │ ├── test-stream2-writable.js
│ │ │ │ │ │ │ │ │ ├── test-stream3-pause-then-read.js
│ │ │ │ │ │ │ │ │ ├── test-stream-big-push.js
│ │ │ │ │ │ │ │ │ ├── test-stream-end-paused.js
│ │ │ │ │ │ │ │ │ ├── test-stream-pipe-after-end.js
│ │ │ │ │ │ │ │ │ ├── test-stream-pipe-error-handling.js
│ │ │ │ │ │ │ │ │ ├── test-stream-pipe-event.js
│ │ │ │ │ │ │ │ │ ├── test-stream-push-order.js
│ │ │ │ │ │ │ │ │ ├── test-stream-push-strings.js
│ │ │ │ │ │ │ │ │ ├── test-stream-readable-event.js
│ │ │ │ │ │ │ │ │ ├── test-stream-readable-flow-recursion.js
│ │ │ │ │ │ │ │ │ ├── test-stream-unshift-empty-chunk.js
│ │ │ │ │ │ │ │ │ ├── test-stream-unshift-read-race.js
│ │ │ │ │ │ │ │ │ └── test-stream-writev.js
│ │ │ │ │ │ │ │ ├── transform.js
│ │ │ │ │ │ │ │ ├── writable.js
│ │ │ │ │ │ │ │ └── zlib.js
│ │ │ │ │ │ │ └── stream-counter
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ │ └── test
│ │ │ │ │ │ │ ├── test.js
│ │ │ │ │ │ │ └── test.txt
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ └── test
│ │ │ │ │ │ ├── bench-multipart-parser.js
│ │ │ │ │ │ ├── fixture
│ │ │ │ │ │ │ ├── file
│ │ │ │ │ │ │ │ ├── beta-sticker-1.png
│ │ │ │ │ │ │ │ ├── binaryfile.tar.gz
│ │ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ │ ├── funkyfilename.txt
│ │ │ │ │ │ │ │ ├── menu_separator.png
│ │ │ │ │ │ │ │ ├── pf1y5.png
│ │ │ │ │ │ │ │ └── plain.txt
│ │ │ │ │ │ │ ├── http
│ │ │ │ │ │ │ │ ├── encoding
│ │ │ │ │ │ │ │ │ ├── beta-sticker-1.png.http
│ │ │ │ │ │ │ │ │ ├── binaryfile.tar.gz.http
│ │ │ │ │ │ │ │ │ ├── blank.gif.http
│ │ │ │ │ │ │ │ │ ├── menu_seperator.png.http
│ │ │ │ │ │ │ │ │ ├── pf1y5.png.http
│ │ │ │ │ │ │ │ │ └── plain.txt.http
│ │ │ │ │ │ │ │ ├── no-filename
│ │ │ │ │ │ │ │ │ ├── filename-name.http
│ │ │ │ │ │ │ │ │ └── generic.http
│ │ │ │ │ │ │ │ ├── preamble
│ │ │ │ │ │ │ │ │ ├── crlf.http
│ │ │ │ │ │ │ │ │ └── preamble.http
│ │ │ │ │ │ │ │ ├── special-chars-in-filename
│ │ │ │ │ │ │ │ │ ├── info.md
│ │ │ │ │ │ │ │ │ ├── osx-chrome-13.http
│ │ │ │ │ │ │ │ │ ├── osx-firefox-3.6.http
│ │ │ │ │ │ │ │ │ ├── osx-safari-5.http
│ │ │ │ │ │ │ │ │ ├── xp-chrome-12.http
│ │ │ │ │ │ │ │ │ ├── xp-ie-7.http
│ │ │ │ │ │ │ │ │ ├── xp-ie-8.http
│ │ │ │ │ │ │ │ │ └── xp-safari-5.http
│ │ │ │ │ │ │ │ └── workarounds
│ │ │ │ │ │ │ │ ├── missing-hyphens1.http
│ │ │ │ │ │ │ │ └── missing-hyphens2.http
│ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ ├── encoding.js
│ │ │ │ │ │ │ │ ├── no-filename.js
│ │ │ │ │ │ │ │ ├── preamble.js
│ │ │ │ │ │ │ │ ├── special-chars-in-filename.js
│ │ │ │ │ │ │ │ └── workarounds.js
│ │ │ │ │ │ │ ├── multipart.js
│ │ │ │ │ │ │ └── multi_video.upload
│ │ │ │ │ │ ├── record.js
│ │ │ │ │ │ ├── standalone
│ │ │ │ │ │ │ ├── test-connection-aborted.js
│ │ │ │ │ │ │ ├── test-content-transfer-encoding.js
│ │ │ │ │ │ │ ├── test-invalid.js
│ │ │ │ │ │ │ ├── test-issue-15.js
│ │ │ │ │ │ │ ├── test-issue-19.js
│ │ │ │ │ │ │ ├── test-issue-21.js
│ │ │ │ │ │ │ ├── test-issue-46.js
│ │ │ │ │ │ │ ├── test-issue-4.js
│ │ │ │ │ │ │ └── test-issue-5.js
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── negotiator
│ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ ├── accept.js
│ │ │ │ │ │ │ ├── charset.js
│ │ │ │ │ │ │ ├── encoding.js
│ │ │ │ │ │ │ └── language.js
│ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ ├── charset.js
│ │ │ │ │ │ │ ├── encoding.js
│ │ │ │ │ │ │ ├── language.js
│ │ │ │ │ │ │ ├── mediaType.js
│ │ │ │ │ │ │ └── negotiator.js
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── readme.md
│ │ │ │ │ │ └── test
│ │ │ │ │ │ ├── charset.js
│ │ │ │ │ │ ├── encoding.js
│ │ │ │ │ │ ├── language.js
│ │ │ │ │ │ └── mediaType.js
│ │ │ │ │ ├── pause
│ │ │ │ │ │ ├── History.md
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ └── Readme.md
│ │ │ │ │ ├── qs
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ └── Readme.md
│ │ │ │ │ ├── raw-body
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ └── README.md
│ │ │ │ │ └── uid2
│ │ │ │ │ ├── index.js
│ │ │ │ │ └── package.json
│ │ │ │ ├── package.json
│ │ │ │ └── Readme.md
│ │ │ ├── cookie
│ │ │ │ ├── index.js
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ ├── README.md
│ │ │ │ └── test
│ │ │ │ ├── mocha.opts
│ │ │ │ ├── parse.js
│ │ │ │ └── serialize.js
│ │ │ ├── cookie-signature
│ │ │ │ ├── History.md
│ │ │ │ ├── index.js
│ │ │ │ ├── Makefile
│ │ │ │ ├── package.json
│ │ │ │ └── Readme.md
│ │ │ ├── debug
│ │ │ │ ├── component.json
│ │ │ │ ├── debug.js
│ │ │ │ ├── example
│ │ │ │ │ ├── app.js
│ │ │ │ │ ├── browser.html
│ │ │ │ │ ├── wildcards.js
│ │ │ │ │ └── worker.js
│ │ │ │ ├── History.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ └── debug.js
│ │ │ │ ├── package.json
│ │ │ │ └── Readme.md
│ │ │ ├── fresh
│ │ │ │ ├── History.md
│ │ │ │ ├── index.js
│ │ │ │ ├── Makefile
│ │ │ │ ├── package.json
│ │ │ │ └── Readme.md
│ │ │ ├── methods
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── mkdirp
│ │ │ │ ├── examples
│ │ │ │ │ └── pow.js
│ │ │ │ ├── index.js
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ ├── readme.markdown
│ │ │ │ └── test
│ │ │ │ ├── chmod.js
│ │ │ │ ├── clobber.js
│ │ │ │ ├── mkdirp.js
│ │ │ │ ├── perm.js
│ │ │ │ ├── perm_sync.js
│ │ │ │ ├── race.js
│ │ │ │ ├── rel.js
│ │ │ │ ├── return.js
│ │ │ │ ├── return_sync.js
│ │ │ │ ├── root.js
│ │ │ │ ├── sync.js
│ │ │ │ ├── umask.js
│ │ │ │ └── umask_sync.js
│ │ │ ├── range-parser
│ │ │ │ ├── History.md
│ │ │ │ ├── index.js
│ │ │ │ ├── Makefile
│ │ │ │ ├── package.json
│ │ │ │ └── Readme.md
│ │ │ └── send
│ │ │ ├── History.md
│ │ │ ├── index.js
│ │ │ ├── lib
│ │ │ │ ├── send.js
│ │ │ │ └── utils.js
│ │ │ ├── Makefile
│ │ │ ├── node_modules
│ │ │ │ └── mime
│ │ │ │ ├── LICENSE
│ │ │ │ ├── mime.js
│ │ │ │ ├── package.json
│ │ │ │ ├── README.md
│ │ │ │ ├── test.js
│ │ │ │ └── types
│ │ │ │ ├── mime.types
│ │ │ │ └── node.types
│ │ │ ├── package.json
│ │ │ └── Readme.md
│ │ ├── package.json
│ │ └── Readme.md
│ ├── ndir
│ │ ├── example
│ │ │ ├── copy-dir.js
│ │ │ ├── hello
│ │ │ │ ├── abc.txt
│ │ │ │ ├── error.txt
│ │ │ │ ├── large-files
│ │ │ │ │ └── 1.zip
│ │ │ │ └── skip.txt
│ │ │ ├── listdir.js
│ │ │ ├── walk_callback_mode.js
│ │ │ └── walk_event_mode.js
│ │ ├── history.md
│ │ ├── index.js
│ │ ├── lib
│ │ │ └── ndir.js
│ │ ├── LICENSE
│ │ ├── Makefile
│ │ ├── package.json
│ │ ├── README.md
│ │ └── test
│ │ ├── access.log
│ │ ├── dir.test.foo.txt
│ │ └── ndir.test.js
│ └── promise
│ ├── core.js
│ ├── index.js
│ ├── lib
│ │ └── next-tick.js
│ ├── LICENSE
│ ├── package.json
│ └── Readme.md
├── package.json
├── public
│ ├── images
│ │ └── sprite_n1.gif
│ ├── javascripts
│ │ ├── jquery-1.10.2.min.js
│ │ ├── uploader
│ │ │ ├── uploaderApp.js
│ │ │ ├── uploader.js
│ │ │ └── uploaderQueue.js
│ │ └── uploader.js
│ ├── stylesheets
│ │ ├── style.css
│ │ └── upload.css
│ └── userData
│ ├── 2013-9-26
│ │ └── 1382802975652
│ │ └── 新建文本文档.txt
│ ├── 2013-9-27
│ │ ├── 1382803515436
│ │ │ └── 新建文本文档.txt
│ │ ├── 1382803712471
│ │ │ └── 新建文本文档.txt
│ │ ├── 1382855034688
│ │ │ └── 新建文本文档.txt
│ │ ├── 1382855545491
│ │ │ └── SwitchyOptions.bak
│ │ ├── 1382855687127
│ │ │ └── 百度云管家.lnk
│ │ ├── 1382855837494
│ │ │ └── 新建文本文档.txt
│ │ └── 1382857117423
│ │ └── 新建文本文档.txt
│ └── 2013-9-28
│ ├── 1382948694527
│ │ └── Jquery优化建议.jpg
│ ├── 1382948700307
│ │ └── 备份文件
│ ├── 1382948705359
│ │ └── foxmail.opml
│ ├── 1382948710240
│ │ └── 架构风格与基于网络的软件架构设计.pdf
│ ├── 1382950159967
│ │ └── Web 前端兴趣小组-第一讲-Javascript、HTML基础,代码规范_张建华.pptx
│ └── 1382950164763
│ └── QQ截图20131028110009.png
├── README.md
├── routes
│ ├── file.js
│ └── index.js
├── utils
│ └── fileUtils.js
├── views
│ ├── file.ejs
│ └── index.ejs
└── 结合html5+nodejs+express实现拖拽上传的功能.txt
112 directories, 477 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论