├── README.md
├── node_modules
├── .bin
│ ├── express
│ ├── express.cmd
│ ├── uglifyjs
│ ├── uglifyjs.cmd
│ ├── wscat
│ └── wscat.cmd
├── active-x-obfuscator
│ ├── ..gitignore.un~
│ ├── .Readme.md.un~
│ ├── .index.js.un~
│ ├── .npmignore
│ ├── .package.json.un~
│ ├── .test.js.un~
│ ├── Readme.md
│ ├── index.js
│ ├── package.json
│ └── test.js
├── append-field
│ ├── .npmignore
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── lib
│ │ ├── parse-path.js
│ │ └── set-value.js
│ ├── package.json
│ └── test
│ │ └── forms.js
├── base64id
│ ├── .npmignore
│ ├── README.md
│ ├── lib
│ │ └── base64id.js
│ └── package.json
├── basic-auth
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── body-parser
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── lib
│ │ ├── read.js
│ │ └── types
│ │ │ ├── json.js
│ │ │ ├── raw.js
│ │ │ ├── text.js
│ │ │ └── urlencoded.js
│ ├── node_modules
│ │ ├── bytes
│ │ │ ├── History.md
│ │ │ ├── LICENSE
│ │ │ ├── Readme.md
│ │ │ ├── index.js
│ │ │ └── package.json
│ │ ├── debug
│ │ │ ├── .coveralls.yml
│ │ │ ├── .eslintrc
│ │ │ ├── .npmignore
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── bower.json
│ │ │ ├── component.json
│ │ │ ├── karma.conf.js
│ │ │ ├── node.js
│ │ │ ├── package.json
│ │ │ └── src
│ │ │ │ ├── browser.js
│ │ │ │ ├── debug.js
│ │ │ │ ├── index.js
│ │ │ │ └── node.js
│ │ ├── ms
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── index.js
│ │ │ └── package.json
│ │ └── qs
│ │ │ ├── .eslintignore
│ │ │ ├── .eslintrc
│ │ │ ├── .jscs.json
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── dist
│ │ │ └── qs.js
│ │ │ ├── lib
│ │ │ ├── formats.js
│ │ │ ├── index.js
│ │ │ ├── parse.js
│ │ │ ├── stringify.js
│ │ │ └── utils.js
│ │ │ ├── package.json
│ │ │ └── test
│ │ │ ├── .eslintrc
│ │ │ ├── index.js
│ │ │ ├── parse.js
│ │ │ ├── stringify.js
│ │ │ └── utils.js
│ └── package.json
├── bson
│ ├── .travis.yml
│ ├── Makefile
│ ├── README.md
│ ├── binding.gyp
│ ├── browser_build
│ │ ├── bson.js
│ │ └── package.json
│ ├── build
│ │ ├── Release
│ │ │ └── obj
│ │ │ │ └── bson
│ │ │ │ ├── bson.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── bson.lastbuildstate
│ │ │ │ └── unsuccessfulbuild
│ │ │ │ ├── vc140.pdb
│ │ │ │ └── win_delay_load_hook.obj
│ │ ├── binding.sln
│ │ ├── bson.vcxproj
│ │ ├── bson.vcxproj.filters
│ │ └── config.gypi
│ ├── build_browser.js
│ ├── builderror.log
│ ├── ext
│ │ ├── Makefile
│ │ ├── bson.cc
│ │ ├── bson.h
│ │ ├── index.js
│ │ ├── win32
│ │ │ ├── ia32
│ │ │ │ └── bson.node
│ │ │ └── x64
│ │ │ │ └── bson.node
│ │ └── wscript
│ ├── lib
│ │ └── bson
│ │ │ ├── binary.js
│ │ │ ├── binary_parser.js
│ │ │ ├── bson.js
│ │ │ ├── code.js
│ │ │ ├── db_ref.js
│ │ │ ├── double.js
│ │ │ ├── float_parser.js
│ │ │ ├── index.js
│ │ │ ├── long.js
│ │ │ ├── max_key.js
│ │ │ ├── min_key.js
│ │ │ ├── objectid.js
│ │ │ ├── symbol.js
│ │ │ └── timestamp.js
│ ├── package.json
│ └── tools
│ │ ├── gleak.js
│ │ └── jasmine-1.1.0
│ │ ├── MIT.LICENSE
│ │ ├── jasmine-html.js
│ │ ├── jasmine.css
│ │ ├── jasmine.js
│ │ └── jasmine_favicon.png
├── buffer-crc32
│ ├── .npmignore
│ ├── .travis.yml
│ ├── README.md
│ ├── index.js
│ ├── package.json
│ └── tests
│ │ └── crc.test.js
├── buffer-shims
│ ├── index.js
│ ├── license.md
│ ├── package.json
│ └── readme.md
├── busboy
│ ├── .travis.yml
│ ├── LICENSE
│ ├── README.md
│ ├── deps
│ │ └── encoding
│ │ │ ├── encoding-indexes.js
│ │ │ └── encoding.js
│ ├── lib
│ │ ├── main.js
│ │ ├── types
│ │ │ ├── multipart.js
│ │ │ └── urlencoded.js
│ │ └── utils.js
│ ├── package.json
│ └── test
│ │ ├── test-types-multipart.js
│ │ ├── test-types-urlencoded.js
│ │ ├── test-utils-decoder.js
│ │ ├── test-utils-parse-params.js
│ │ └── test.js
├── bytes
│ ├── .npmignore
│ ├── History.md
│ ├── Makefile
│ ├── Readme.md
│ ├── component.json
│ ├── index.js
│ └── package.json
├── commander
│ ├── History.md
│ ├── Readme.md
│ ├── index.js
│ └── package.json
├── concat-stream
│ ├── LICENSE
│ ├── index.js
│ ├── node_modules
│ │ ├── isarray
│ │ │ ├── .npmignore
│ │ │ ├── .travis.yml
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── component.json
│ │ │ ├── index.js
│ │ │ ├── package.json
│ │ │ └── test.js
│ │ ├── readable-stream
│ │ │ ├── .npmignore
│ │ │ ├── .travis.yml
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── GOVERNANCE.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── doc
│ │ │ │ └── wg-meetings
│ │ │ │ │ └── 2015-01-30.md
│ │ │ ├── duplex-browser.js
│ │ │ ├── duplex.js
│ │ │ ├── lib
│ │ │ │ ├── _stream_duplex.js
│ │ │ │ ├── _stream_passthrough.js
│ │ │ │ ├── _stream_readable.js
│ │ │ │ ├── _stream_transform.js
│ │ │ │ ├── _stream_writable.js
│ │ │ │ └── internal
│ │ │ │ │ └── streams
│ │ │ │ │ ├── BufferList.js
│ │ │ │ │ ├── stream-browser.js
│ │ │ │ │ └── stream.js
│ │ │ ├── package.json
│ │ │ ├── passthrough.js
│ │ │ ├── readable-browser.js
│ │ │ ├── readable.js
│ │ │ ├── transform.js
│ │ │ ├── writable-browser.js
│ │ │ └── writable.js
│ │ └── string_decoder
│ │ │ ├── .npmignore
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── lib
│ │ │ └── string_decoder.js
│ │ │ └── package.json
│ ├── package.json
│ └── readme.md
├── connect
│ ├── .npmignore
│ ├── .travis.yml
│ ├── LICENSE
│ ├── Readme.md
│ ├── 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.js
│ │ │ ├── session
│ │ │ │ ├── cookie.js
│ │ │ │ ├── memory.js
│ │ │ │ ├── session.js
│ │ │ │ └── store.js
│ │ │ ├── static.js
│ │ │ ├── staticCache.js
│ │ │ ├── timeout.js
│ │ │ ├── urlencoded.js
│ │ │ └── vhost.js
│ │ ├── patch.js
│ │ ├── proto.js
│ │ ├── public
│ │ │ ├── directory.html
│ │ │ ├── error.html
│ │ │ ├── favicon.ico
│ │ │ ├── icons
│ │ │ │ ├── page.png
│ │ │ │ ├── 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_red.png
│ │ │ │ ├── page_refresh.png
│ │ │ │ ├── page_save.png
│ │ │ │ ├── page_white.png
│ │ │ │ ├── page_white_acrobat.png
│ │ │ │ ├── page_white_actionscript.png
│ │ │ │ ├── page_white_add.png
│ │ │ │ ├── page_white_c.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_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_h.png
│ │ │ │ ├── page_white_horizontal.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_paint.png
│ │ │ │ ├── page_white_paintbrush.png
│ │ │ │ ├── page_white_paste.png
│ │ │ │ ├── page_white_php.png
│ │ │ │ ├── page_white_picture.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
│ ├── package.json
│ └── test.js
├── content-type
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── cookie-parser
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── node_modules
│ │ ├── cookie-signature
│ │ │ ├── .npmignore
│ │ │ ├── History.md
│ │ │ ├── Readme.md
│ │ │ ├── index.js
│ │ │ └── package.json
│ │ └── cookie
│ │ │ ├── HISTORY.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── index.js
│ │ │ └── package.json
│ └── package.json
├── cookie-signature
│ ├── .npmignore
│ ├── History.md
│ ├── Makefile
│ ├── Readme.md
│ ├── index.js
│ └── package.json
├── cookie
│ ├── .npmignore
│ ├── .travis.yml
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── package.json
│ └── test
│ │ ├── mocha.opts
│ │ ├── parse.js
│ │ └── serialize.js
├── core-util-is
│ ├── LICENSE
│ ├── README.md
│ ├── float.patch
│ ├── lib
│ │ └── util.js
│ ├── package.json
│ └── test.js
├── crc
│ ├── LICENSE
│ ├── README.md
│ ├── lib
│ │ ├── crc1.js
│ │ ├── crc16.js
│ │ ├── crc16_ccitt.js
│ │ ├── crc16_kermit.js
│ │ ├── crc16_modbus.js
│ │ ├── crc16_xmodem.js
│ │ ├── crc24.js
│ │ ├── crc32.js
│ │ ├── crc8.js
│ │ ├── crc8_1wire.js
│ │ ├── create_buffer.js
│ │ ├── define_crc.js
│ │ └── index.js
│ └── package.json
├── debug
│ ├── .coveralls.yml
│ ├── .eslintrc
│ ├── .npmignore
│ ├── .travis.yml
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── Makefile
│ ├── README.md
│ ├── component.json
│ ├── karma.conf.js
│ ├── node.js
│ ├── package.json
│ └── src
│ │ ├── browser.js
│ │ ├── debug.js
│ │ ├── index.js
│ │ └── node.js
├── depd
│ ├── History.md
│ ├── LICENSE
│ ├── Readme.md
│ ├── index.js
│ ├── lib
│ │ ├── browser
│ │ │ └── index.js
│ │ └── compat
│ │ │ ├── buffer-concat.js
│ │ │ ├── callsite-tostring.js
│ │ │ ├── event-listener-count.js
│ │ │ └── index.js
│ └── package.json
├── dicer
│ ├── .travis.yml
│ ├── LICENSE
│ ├── README.md
│ ├── bench
│ │ ├── dicer-bench-multipart-parser.js
│ │ ├── formidable-bench-multipart-parser.js
│ │ ├── multipartser-bench-multipart-parser.js
│ │ ├── multiparty-bench-multipart-parser.js
│ │ ├── parted-bench-multipart-parser.js
│ │ └── parted-multipart.js
│ ├── lib
│ │ ├── Dicer.js
│ │ ├── HeaderParser.js
│ │ └── PartStream.js
│ ├── package.json
│ └── test
│ │ ├── fixtures
│ │ ├── many-noend
│ │ │ ├── original
│ │ │ ├── part1
│ │ │ ├── part1.header
│ │ │ ├── part2
│ │ │ ├── part2.header
│ │ │ ├── part3
│ │ │ ├── part3.header
│ │ │ ├── part4
│ │ │ ├── part4.header
│ │ │ ├── part5
│ │ │ ├── part5.header
│ │ │ ├── part6
│ │ │ ├── part6.header
│ │ │ └── part7.header
│ │ ├── many-wrongboundary
│ │ │ ├── original
│ │ │ ├── preamble
│ │ │ └── preamble.error
│ │ ├── many
│ │ │ ├── original
│ │ │ ├── part1
│ │ │ ├── part1.header
│ │ │ ├── part2
│ │ │ ├── part2.header
│ │ │ ├── part3
│ │ │ ├── part3.header
│ │ │ ├── part4
│ │ │ ├── part4.header
│ │ │ ├── part5
│ │ │ ├── part5.header
│ │ │ ├── part6
│ │ │ ├── part6.header
│ │ │ ├── part7
│ │ │ └── part7.header
│ │ ├── nested-full
│ │ │ ├── original
│ │ │ ├── part1
│ │ │ ├── part1.header
│ │ │ ├── part2
│ │ │ ├── part2.header
│ │ │ └── preamble.header
│ │ └── nested
│ │ │ ├── original
│ │ │ ├── part1
│ │ │ ├── part1.header
│ │ │ ├── part2
│ │ │ └── part2.header
│ │ ├── test-endfinish.js
│ │ ├── test-headerparser.js
│ │ ├── test-multipart-extra-trailer.js
│ │ ├── test-multipart-nolisteners.js
│ │ ├── test-multipart.js
│ │ └── test.js
├── ee-first
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── ejs-locals
│ ├── .npmignore
│ ├── README.md
│ ├── example
│ │ ├── app.js
│ │ ├── foo.css
│ │ ├── foo.js
│ │ └── views
│ │ │ ├── boilerplate.ejs
│ │ │ ├── extra.ejs
│ │ │ ├── index.ejs
│ │ │ └── muppet.ejs
│ ├── index.js
│ ├── node_modules
│ │ └── ejs
│ │ │ ├── .gitmodules
│ │ │ ├── .npmignore
│ │ │ ├── .travis.yml
│ │ │ ├── History.md
│ │ │ ├── Makefile
│ │ │ ├── Readme.md
│ │ │ ├── benchmark.js
│ │ │ ├── ejs.js
│ │ │ ├── ejs.min.js
│ │ │ ├── examples
│ │ │ ├── client.html
│ │ │ ├── functions.ejs
│ │ │ ├── functions.js
│ │ │ ├── list.ejs
│ │ │ └── list.js
│ │ │ ├── index.js
│ │ │ ├── lib
│ │ │ ├── ejs.js
│ │ │ ├── filters.js
│ │ │ └── utils.js
│ │ │ ├── package.json
│ │ │ ├── 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
│ ├── package.json
│ └── test
│ │ ├── fixtures
│ │ ├── _entry.ejs
│ │ ├── blocks-layout.ejs
│ │ ├── blog
│ │ │ ├── home.ejs
│ │ │ ├── post
│ │ │ │ ├── comment.ejs
│ │ │ │ └── index.ejs
│ │ │ └── user.ejs
│ │ ├── collection.ejs
│ │ ├── filters-custom.ejs
│ │ ├── filters.ejs
│ │ ├── include-chain-2.ejs
│ │ ├── include-chain.ejs
│ │ ├── index.ejs
│ │ ├── inherit-child-blocks.ejs
│ │ ├── inherit-child.ejs
│ │ ├── inherit-grandchild-blocks.ejs
│ │ ├── inherit-grandchild.ejs
│ │ ├── inherit-parent-blocks.ejs
│ │ ├── inherit-parent.ejs
│ │ ├── layout.ejs
│ │ ├── locals.ejs
│ │ ├── mobile.ejs
│ │ ├── non-existent-partial.ejs
│ │ ├── parent-include-chain.ejs
│ │ ├── path
│ │ │ └── to
│ │ │ │ └── thing.ejs
│ │ ├── subfolder
│ │ │ ├── sub-include-chain.ejs
│ │ │ ├── sub-layout.ejs
│ │ │ ├── subitem-with-layout.ejs
│ │ │ ├── subitem.ejs
│ │ │ └── sublocals.ejs
│ │ ├── thing
│ │ │ └── index.ejs
│ │ ├── with-absolute-include.ejs
│ │ ├── with-absolute-sub-include.ejs
│ │ ├── with-blocks.ejs
│ │ ├── with-include-chain-subfolder.ejs
│ │ ├── with-include-chain.ejs
│ │ ├── with-include.ejs
│ │ ├── with-layout.ejs
│ │ └── with-two-includes.ejs
│ │ ├── support
│ │ └── http.js
│ │ └── test.partials.js
├── ejs
│ ├── Jakefile
│ ├── LICENSE
│ ├── README.md
│ ├── ejs.js
│ ├── ejs.min.js
│ ├── lib
│ │ ├── ejs.js
│ │ └── utils.js
│ ├── package.json
│ └── test
│ │ ├── ejs.js
│ │ ├── fixtures
│ │ ├── backslash.ejs
│ │ ├── backslash.html
│ │ ├── comments.ejs
│ │ ├── comments.html
│ │ ├── consecutive-tags.ejs
│ │ ├── consecutive-tags.html
│ │ ├── double-quote.ejs
│ │ ├── double-quote.html
│ │ ├── error.ejs
│ │ ├── error.out
│ │ ├── fail.ejs
│ │ ├── hello-world.ejs
│ │ ├── include-abspath.ejs
│ │ ├── include-root.ejs
│ │ ├── include-simple.ejs
│ │ ├── include-simple.html
│ │ ├── include.css.ejs
│ │ ├── include.css.html
│ │ ├── include.ejs
│ │ ├── include.html
│ │ ├── include_cache.ejs
│ │ ├── include_cache.html
│ │ ├── include_preprocessor.css.ejs
│ │ ├── include_preprocessor.css.html
│ │ ├── include_preprocessor.ejs
│ │ ├── include_preprocessor.html
│ │ ├── include_preprocessor_cache.ejs
│ │ ├── include_preprocessor_cache.html
│ │ ├── include_preprocessor_line_slurp.ejs
│ │ ├── include_preprocessor_line_slurp.html
│ │ ├── include_preprocessor_line_slurp_child.ejs
│ │ ├── includes
│ │ │ ├── bom.ejs
│ │ │ ├── menu-item.ejs
│ │ │ └── menu
│ │ │ │ └── item.ejs
│ │ ├── literal.ejs
│ │ ├── literal.html
│ │ ├── menu.ejs
│ │ ├── menu.html
│ │ ├── menu_preprocessor.ejs
│ │ ├── menu_preprocessor.html
│ │ ├── menu_var.ejs
│ │ ├── messed.ejs
│ │ ├── messed.html
│ │ ├── newlines.ejs
│ │ ├── newlines.html
│ │ ├── newlines.mixed.ejs
│ │ ├── newlines.mixed.html
│ │ ├── no.newlines.ejs
│ │ ├── no.newlines.error.ejs
│ │ ├── no.newlines.html
│ │ ├── no.semicolons.ejs
│ │ ├── no.semicolons.html
│ │ ├── para.ejs
│ │ ├── pet.ejs
│ │ ├── rmWhitespace.ejs
│ │ ├── rmWhitespace.html
│ │ ├── single-quote.ejs
│ │ ├── single-quote.html
│ │ ├── space-and-tab-slurp.ejs
│ │ ├── space-and-tab-slurp.html
│ │ ├── strict.ejs
│ │ ├── style.css
│ │ ├── user-no-with.ejs
│ │ ├── user.ejs
│ │ └── with-context.ejs
│ │ ├── mocha.opts
│ │ └── tmp
│ │ ├── include.ejs
│ │ ├── include_preprocessor.ejs
│ │ └── renderFile.ejs
├── express-session
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── node_modules
│ │ ├── cookie-signature
│ │ │ ├── .npmignore
│ │ │ ├── History.md
│ │ │ ├── Readme.md
│ │ │ ├── index.js
│ │ │ └── package.json
│ │ ├── cookie
│ │ │ ├── HISTORY.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── index.js
│ │ │ └── package.json
│ │ ├── debug
│ │ │ ├── .coveralls.yml
│ │ │ ├── .eslintrc
│ │ │ ├── .npmignore
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── bower.json
│ │ │ ├── component.json
│ │ │ ├── karma.conf.js
│ │ │ ├── node.js
│ │ │ ├── package.json
│ │ │ └── src
│ │ │ │ ├── browser.js
│ │ │ │ ├── debug.js
│ │ │ │ ├── index.js
│ │ │ │ └── node.js
│ │ └── ms
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── index.js
│ │ │ └── package.json
│ ├── package.json
│ └── session
│ │ ├── cookie.js
│ │ ├── memory.js
│ │ ├── session.js
│ │ └── store.js
├── express
│ ├── .npmignore
│ ├── .travis.yml
│ ├── History.md
│ ├── LICENSE
│ ├── Makefile
│ ├── Readme.md
│ ├── bin
│ │ └── express
│ ├── index.js
│ ├── lib
│ │ ├── application.js
│ │ ├── express.js
│ │ ├── middleware.js
│ │ ├── request.js
│ │ ├── response.js
│ │ ├── router
│ │ │ ├── index.js
│ │ │ └── route.js
│ │ ├── utils.js
│ │ └── view.js
│ ├── package.json
│ └── test.js
├── formidable
│ ├── .npmignore
│ ├── .travis.yml
│ ├── LICENSE
│ ├── Readme.md
│ ├── benchmark
│ │ └── bench-multipart-parser.js
│ ├── example
│ │ ├── json.js
│ │ ├── post.js
│ │ └── upload.js
│ ├── index.js
│ ├── lib
│ │ ├── file.js
│ │ ├── incoming_form.js
│ │ ├── index.js
│ │ ├── json_parser.js
│ │ ├── multipart_parser.js
│ │ ├── octet_parser.js
│ │ └── querystring_parser.js
│ ├── package.json
│ ├── test
│ │ ├── common.js
│ │ ├── fixture
│ │ │ ├── file
│ │ │ │ ├── beta-sticker-1.png
│ │ │ │ ├── binaryfile.tar.gz
│ │ │ │ ├── blank.gif
│ │ │ │ ├── funkyfilename.txt
│ │ │ │ ├── menu_separator.png
│ │ │ │ └── plain.txt
│ │ │ ├── http
│ │ │ │ └── special-chars-in-filename
│ │ │ │ │ └── info.md
│ │ │ ├── js
│ │ │ │ ├── encoding.js
│ │ │ │ ├── misc.js
│ │ │ │ ├── no-filename.js
│ │ │ │ ├── preamble.js
│ │ │ │ ├── special-chars-in-filename.js
│ │ │ │ └── workarounds.js
│ │ │ └── multipart.js
│ │ ├── integration
│ │ │ ├── test-fixtures.js
│ │ │ ├── test-json.js
│ │ │ └── test-octet-stream.js
│ │ ├── legacy
│ │ │ ├── common.js
│ │ │ ├── integration
│ │ │ │ └── test-multipart-parser.js
│ │ │ ├── simple
│ │ │ │ ├── test-file.js
│ │ │ │ ├── test-incoming-form.js
│ │ │ │ ├── test-multipart-parser.js
│ │ │ │ └── test-querystring-parser.js
│ │ │ └── system
│ │ │ │ └── test-multi-video-upload.js
│ │ ├── run.js
│ │ ├── standalone
│ │ │ ├── test-connection-aborted.js
│ │ │ ├── test-content-transfer-encoding.js
│ │ │ └── test-issue-46.js
│ │ ├── tools
│ │ │ └── base64.html
│ │ └── unit
│ │ │ ├── test-file.js
│ │ │ └── test-incoming-form.js
│ └── tool
│ │ └── record.js
├── fresh
│ ├── .npmignore
│ ├── History.md
│ ├── Makefile
│ ├── Readme.md
│ ├── index.js
│ └── package.json
├── hooks
│ ├── .npmignore
│ ├── Makefile
│ ├── README.md
│ ├── hooks.alt.js
│ ├── hooks.js
│ ├── package.json
│ └── test.js
├── http-errors
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── iconv-lite
│ ├── .npmignore
│ ├── .travis.yml
│ ├── Changelog.md
│ ├── LICENSE
│ ├── README.md
│ ├── encodings
│ │ ├── dbcs-codec.js
│ │ ├── dbcs-data.js
│ │ ├── index.js
│ │ ├── internal.js
│ │ ├── sbcs-codec.js
│ │ ├── sbcs-data-generated.js
│ │ ├── sbcs-data.js
│ │ ├── tables
│ │ │ ├── big5-added.json
│ │ │ ├── cp936.json
│ │ │ ├── cp949.json
│ │ │ ├── cp950.json
│ │ │ ├── eucjp.json
│ │ │ ├── gb18030-ranges.json
│ │ │ ├── gbk-added.json
│ │ │ └── shiftjis.json
│ │ ├── utf16.js
│ │ └── utf7.js
│ ├── lib
│ │ ├── bom-handling.js
│ │ ├── extend-node.js
│ │ ├── index.d.ts
│ │ ├── index.js
│ │ └── streams.js
│ └── package.json
├── inherits
│ ├── LICENSE
│ ├── README.md
│ ├── inherits.js
│ ├── inherits_browser.js
│ └── package.json
├── isarray
│ ├── README.md
│ ├── build
│ │ └── build.js
│ ├── component.json
│ ├── index.js
│ └── package.json
├── kerberos
│ ├── LICENSE
│ ├── README.md
│ ├── binding.gyp
│ ├── build
│ │ ├── Release
│ │ │ └── obj
│ │ │ │ └── kerberos
│ │ │ │ ├── kerberos.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── kerberos.lastbuildstate
│ │ │ │ └── unsuccessfulbuild
│ │ │ │ ├── vc140.pdb
│ │ │ │ └── win_delay_load_hook.obj
│ │ ├── binding.sln
│ │ ├── config.gypi
│ │ ├── kerberos.vcxproj
│ │ └── kerberos.vcxproj.filters
│ ├── builderror.log
│ ├── index.js
│ ├── lib
│ │ ├── auth_processes
│ │ │ └── mongodb.js
│ │ ├── base64.c
│ │ ├── base64.h
│ │ ├── kerberos.cc
│ │ ├── kerberos.h
│ │ ├── kerberos.js
│ │ ├── kerberos_context.cc
│ │ ├── kerberos_context.h
│ │ ├── kerberosgss.c
│ │ ├── kerberosgss.h
│ │ ├── sspi.js
│ │ ├── win32
│ │ │ ├── base64.c
│ │ │ ├── base64.h
│ │ │ ├── kerberos.cc
│ │ │ ├── kerberos.h
│ │ │ ├── kerberos_sspi.c
│ │ │ ├── kerberos_sspi.h
│ │ │ ├── worker.cc
│ │ │ ├── worker.h
│ │ │ └── wrappers
│ │ │ │ ├── security_buffer.cc
│ │ │ │ ├── security_buffer.h
│ │ │ │ ├── security_buffer.js
│ │ │ │ ├── security_buffer_descriptor.cc
│ │ │ │ ├── security_buffer_descriptor.h
│ │ │ │ ├── security_buffer_descriptor.js
│ │ │ │ ├── security_context.cc
│ │ │ │ ├── security_context.h
│ │ │ │ ├── security_context.js
│ │ │ │ ├── security_credentials.cc
│ │ │ │ ├── security_credentials.h
│ │ │ │ └── security_credentials.js
│ │ ├── worker.cc
│ │ └── worker.h
│ ├── package.json
│ └── test
│ │ ├── kerberos_tests.js
│ │ ├── kerberos_win32_test.js
│ │ └── win32
│ │ ├── security_buffer_descriptor_tests.js
│ │ ├── security_buffer_tests.js
│ │ └── security_credentials_tests.js
├── keypress
│ ├── README.md
│ ├── index.js
│ ├── package.json
│ └── test.js
├── media-typer
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── methods
│ ├── index.js
│ └── package.json
├── mime-db
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── db.json
│ ├── index.js
│ └── package.json
├── mime-types
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── mime
│ ├── LICENSE
│ ├── README.md
│ ├── mime.js
│ ├── package.json
│ ├── test.js
│ └── types
│ │ ├── mime.types
│ │ └── node.types
├── minimist
│ ├── .travis.yml
│ ├── LICENSE
│ ├── example
│ │ └── parse.js
│ ├── index.js
│ ├── package.json
│ ├── readme.markdown
│ └── test
│ │ ├── dash.js
│ │ ├── default_bool.js
│ │ ├── dotted.js
│ │ ├── long.js
│ │ ├── parse.js
│ │ ├── parse_modified.js
│ │ ├── short.js
│ │ └── whitespace.js
├── mkdirp
│ ├── .npmignore
│ ├── .travis.yml
│ ├── LICENSE
│ ├── examples
│ │ └── pow.js
│ ├── index.js
│ ├── 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
├── mongodb
│ ├── .travis.yml
│ ├── CONTRIBUTING.md
│ ├── LICENSE
│ ├── Makefile
│ ├── Readme.md
│ ├── index.js
│ ├── lib
│ │ └── mongodb
│ │ │ ├── admin.js
│ │ │ ├── auth
│ │ │ ├── mongodb_cr.js
│ │ │ ├── mongodb_gssapi.js
│ │ │ ├── mongodb_plain.js
│ │ │ └── mongodb_sspi.js
│ │ │ ├── collection.js
│ │ │ ├── commands
│ │ │ ├── base_command.js
│ │ │ ├── db_command.js
│ │ │ ├── delete_command.js
│ │ │ ├── get_more_command.js
│ │ │ ├── insert_command.js
│ │ │ ├── kill_cursor_command.js
│ │ │ ├── query_command.js
│ │ │ └── update_command.js
│ │ │ ├── connection
│ │ │ ├── base.js
│ │ │ ├── connection.js
│ │ │ ├── connection_pool.js
│ │ │ ├── connection_utils.js
│ │ │ ├── mongos.js
│ │ │ ├── read_preference.js
│ │ │ ├── repl_set
│ │ │ │ ├── ha.js
│ │ │ │ ├── options.js
│ │ │ │ ├── repl_set.js
│ │ │ │ ├── repl_set_state.js
│ │ │ │ └── strategies
│ │ │ │ │ ├── ping_strategy.js
│ │ │ │ │ └── statistics_strategy.js
│ │ │ ├── server.js
│ │ │ └── url_parser.js
│ │ │ ├── cursor.js
│ │ │ ├── cursorstream.js
│ │ │ ├── db.js
│ │ │ ├── gridfs
│ │ │ ├── chunk.js
│ │ │ ├── grid.js
│ │ │ ├── gridstore.js
│ │ │ └── readstream.js
│ │ │ ├── index.js
│ │ │ ├── mongo_client.js
│ │ │ ├── responses
│ │ │ └── mongo_reply.js
│ │ │ └── utils.js
│ ├── package.json
│ └── t.js
├── mongoose
│ ├── .npmignore
│ ├── .travis.yml
│ ├── CONTRIBUTING.md
│ ├── History.md
│ ├── README.md
│ ├── examples
│ │ ├── README.md
│ │ ├── doc-methods.js
│ │ ├── population-across-three-collections.js
│ │ ├── population-basic.js
│ │ ├── population-of-existing-doc.js
│ │ ├── population-of-multiple-existing-docs.js
│ │ ├── population-options.js
│ │ ├── population-plain-objects.js
│ │ └── schema.js
│ ├── index.js
│ ├── lib
│ │ ├── collection.js
│ │ ├── connection.js
│ │ ├── connectionstate.js
│ │ ├── document.js
│ │ ├── drivers
│ │ │ ├── SPEC.md
│ │ │ └── node-mongodb-native
│ │ │ │ ├── binary.js
│ │ │ │ ├── collection.js
│ │ │ │ ├── connection.js
│ │ │ │ └── objectid.js
│ │ ├── error.js
│ │ ├── errors
│ │ │ ├── cast.js
│ │ │ ├── divergentArray.js
│ │ │ ├── document.js
│ │ │ ├── missingSchema.js
│ │ │ ├── overwriteModel.js
│ │ │ ├── validation.js
│ │ │ ├── validator.js
│ │ │ └── version.js
│ │ ├── index.js
│ │ ├── internal.js
│ │ ├── model.js
│ │ ├── namedscope.js
│ │ ├── promise.js
│ │ ├── query.js
│ │ ├── queryhelpers.js
│ │ ├── querystream.js
│ │ ├── schema.js
│ │ ├── schema
│ │ │ ├── array.js
│ │ │ ├── boolean.js
│ │ │ ├── buffer.js
│ │ │ ├── date.js
│ │ │ ├── documentarray.js
│ │ │ ├── embedded.js
│ │ │ ├── index.js
│ │ │ ├── mixed.js
│ │ │ ├── number.js
│ │ │ ├── objectid.js
│ │ │ └── string.js
│ │ ├── schemadefault.js
│ │ ├── schematype.js
│ │ ├── statemachine.js
│ │ ├── types
│ │ │ ├── array.js
│ │ │ ├── buffer.js
│ │ │ ├── documentarray.js
│ │ │ ├── embedded.js
│ │ │ ├── index.js
│ │ │ └── objectid.js
│ │ ├── utils.js
│ │ └── virtualtype.js
│ ├── node_modules
│ │ └── ms
│ │ │ ├── .npmignore
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── ms.js
│ │ │ ├── package.json
│ │ │ └── test
│ │ │ ├── index.html
│ │ │ ├── support
│ │ │ └── jquery.js
│ │ │ └── test.js
│ ├── package.json
│ ├── static.js
│ └── website.js
├── morgan
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── node_modules
│ │ ├── debug
│ │ │ ├── .coveralls.yml
│ │ │ ├── .eslintrc
│ │ │ ├── .npmignore
│ │ │ ├── .travis.yml
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── bower.json
│ │ │ ├── component.json
│ │ │ ├── karma.conf.js
│ │ │ ├── node.js
│ │ │ ├── package.json
│ │ │ └── src
│ │ │ │ ├── browser.js
│ │ │ │ ├── debug.js
│ │ │ │ ├── index.js
│ │ │ │ └── node.js
│ │ └── ms
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── index.js
│ │ │ └── package.json
│ └── package.json
├── mpath
│ ├── .npmignore
│ ├── .travis.yml
│ ├── History.md
│ ├── LICENSE
│ ├── Makefile
│ ├── README.md
│ ├── index.js
│ ├── lib
│ │ └── index.js
│ ├── package.json
│ └── test
│ │ └── index.js
├── mpromise
│ ├── .npmignore
│ ├── .travis.yml
│ ├── History.md
│ ├── LICENSE
│ ├── Makefile
│ ├── README.md
│ ├── index.js
│ ├── lib
│ │ └── promise.js
│ ├── node_modules
│ │ └── sliced
│ │ │ ├── .npmignore
│ │ │ ├── .travis.yml
│ │ │ ├── History.md
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── bench.js
│ │ │ ├── component.json
│ │ │ ├── index.js
│ │ │ ├── lib
│ │ │ └── sliced.js
│ │ │ ├── package.json
│ │ │ └── test
│ │ │ └── index.js
│ ├── package.json
│ └── test
│ │ ├── promise.test.js
│ │ └── promises-A.js
├── ms
│ ├── index.js
│ ├── license.md
│ ├── package.json
│ └── readme.md
├── multer
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── lib
│ │ ├── counter.js
│ │ ├── file-appender.js
│ │ ├── make-error.js
│ │ ├── make-middleware.js
│ │ └── remove-uploaded-files.js
│ ├── node_modules
│ │ ├── .bin
│ │ │ ├── mkdirp
│ │ │ └── mkdirp.cmd
│ │ └── mkdirp
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── bin
│ │ │ ├── cmd.js
│ │ │ └── usage.txt
│ │ │ ├── examples
│ │ │ └── pow.js
│ │ │ ├── index.js
│ │ │ ├── package.json
│ │ │ ├── readme.markdown
│ │ │ └── test
│ │ │ ├── chmod.js
│ │ │ ├── clobber.js
│ │ │ ├── mkdirp.js
│ │ │ ├── opts_fs.js
│ │ │ ├── opts_fs_sync.js
│ │ │ ├── perm.js
│ │ │ ├── perm_sync.js
│ │ │ ├── race.js
│ │ │ ├── rel.js
│ │ │ ├── return.js
│ │ │ ├── return_sync.js
│ │ │ ├── root.js
│ │ │ ├── sync.js
│ │ │ ├── umask.js
│ │ │ └── umask_sync.js
│ ├── package.json
│ └── storage
│ │ ├── disk.js
│ │ └── memory.js
├── muri
│ ├── .npmignore
│ ├── .travis.yml
│ ├── History.md
│ ├── LICENSE
│ ├── Makefile
│ ├── README.md
│ ├── index.js
│ ├── lib
│ │ └── index.js
│ ├── package.json
│ └── test
│ │ └── index.js
├── nan
│ ├── .dntrc
│ ├── LICENSE
│ ├── README.md
│ ├── build
│ │ └── config.gypi
│ ├── include_dirs.js
│ ├── nan.h
│ └── package.json
├── object-assign
│ ├── index.js
│ ├── license
│ ├── package.json
│ └── readme.md
├── on-finished
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── on-headers
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── options
│ ├── .npmignore
│ ├── Makefile
│ ├── README.md
│ ├── lib
│ │ └── options.js
│ └── package.json
├── parseurl
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── pause
│ ├── .npmignore
│ ├── History.md
│ ├── Makefile
│ ├── Readme.md
│ ├── index.js
│ └── package.json
├── policyfile
│ ├── .npmignore
│ ├── LICENSE
│ ├── Makefile
│ ├── README.md
│ ├── doc
│ │ └── index.html
│ ├── examples
│ │ ├── basic.fallback.js
│ │ └── basic.js
│ ├── index.js
│ ├── lib
│ │ └── server.js
│ ├── package.json
│ └── tests
│ │ ├── ssl
│ │ ├── ssl.crt
│ │ └── ssl.private.key
│ │ └── unit.test.js
├── process-nextick-args
│ ├── .travis.yml
│ ├── index.js
│ ├── license.md
│ ├── package.json
│ ├── readme.md
│ └── test.js
├── qs
│ ├── .gitmodules
│ ├── .npmignore
│ ├── Readme.md
│ ├── index.js
│ └── package.json
├── random-bytes
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── range-parser
│ ├── .npmignore
│ ├── History.md
│ ├── Makefile
│ ├── Readme.md
│ ├── index.js
│ └── package.json
├── raw-body
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ ├── node_modules
│ │ └── bytes
│ │ │ ├── History.md
│ │ │ ├── LICENSE
│ │ │ ├── Readme.md
│ │ │ ├── index.js
│ │ │ └── package.json
│ └── package.json
├── readable-stream
│ ├── .npmignore
│ ├── LICENSE
│ ├── README.md
│ ├── duplex.js
│ ├── float.patch
│ ├── lib
│ │ ├── _stream_duplex.js
│ │ ├── _stream_passthrough.js
│ │ ├── _stream_readable.js
│ │ ├── _stream_transform.js
│ │ └── _stream_writable.js
│ ├── package.json
│ ├── passthrough.js
│ ├── readable.js
│ ├── transform.js
│ └── writable.js
├── redis
│ ├── .npmignore
│ ├── README.md
│ ├── benches
│ │ ├── buffer_bench.js
│ │ ├── hiredis_parser.js
│ │ ├── re_sub_test.js
│ │ ├── reconnect_test.js
│ │ ├── stress
│ │ │ ├── codec.js
│ │ │ ├── pubsub
│ │ │ │ ├── pub.js
│ │ │ │ ├── run
│ │ │ │ └── server.js
│ │ │ ├── rpushblpop
│ │ │ │ ├── pub.js
│ │ │ │ ├── run
│ │ │ │ └── server.js
│ │ │ └── speed
│ │ │ │ ├── 00
│ │ │ │ ├── plot
│ │ │ │ ├── size-rate.png
│ │ │ │ └── speed.js
│ │ └── sub_quit_test.js
│ ├── changelog.md
│ ├── diff_multi_bench_output.js
│ ├── examples
│ │ ├── auth.js
│ │ ├── backpressure_drain.js
│ │ ├── eval.js
│ │ ├── extend.js
│ │ ├── file.js
│ │ ├── mget.js
│ │ ├── monitor.js
│ │ ├── multi.js
│ │ ├── multi2.js
│ │ ├── psubscribe.js
│ │ ├── pub_sub.js
│ │ ├── simple.js
│ │ ├── sort.js
│ │ ├── subqueries.js
│ │ ├── subquery.js
│ │ ├── unix_socket.js
│ │ └── web_server.js
│ ├── generate_commands.js
│ ├── index.js
│ ├── lib
│ │ ├── commands.js
│ │ ├── parser
│ │ │ ├── hiredis.js
│ │ │ └── javascript.js
│ │ ├── queue.js
│ │ ├── to_array.js
│ │ └── util.js
│ ├── mem.js
│ ├── multi_bench.js
│ ├── package.json
│ └── test.js
├── regexp-clone
│ ├── .npmignore
│ ├── .travis.yml
│ ├── History.md
│ ├── LICENSE
│ ├── Makefile
│ ├── README.md
│ ├── index.js
│ ├── package.json
│ └── test
│ │ └── index.js
├── send
│ ├── .npmignore
│ ├── History.md
│ ├── Makefile
│ ├── Readme.md
│ ├── index.js
│ ├── lib
│ │ ├── send.js
│ │ └── utils.js
│ └── package.json
├── setprototypeof
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── sliced
│ ├── .npmignore
│ ├── .travis.yml
│ ├── History.md
│ ├── LICENSE
│ ├── Makefile
│ ├── README.md
│ ├── bench.js
│ ├── component.json
│ ├── index.js
│ ├── lib
│ │ └── sliced.js
│ ├── package.json
│ └── test
│ │ └── index.js
├── socket.io-client
│ ├── .npmignore
│ ├── History.md
│ ├── Makefile
│ ├── README.md
│ ├── bin
│ │ └── builder.js
│ ├── components
│ │ ├── component-bind
│ │ │ ├── component.json
│ │ │ └── index.js
│ │ ├── component-emitter
│ │ │ ├── component.json
│ │ │ └── index.js
│ │ ├── component-json-fallback
│ │ │ ├── component.json
│ │ │ └── index.js
│ │ ├── component-json
│ │ │ ├── component.json
│ │ │ └── index.js
│ │ ├── learnboost-engine.io-client
│ │ │ ├── component.json
│ │ │ └── lib
│ │ │ │ ├── emitter.js
│ │ │ │ ├── index.js
│ │ │ │ ├── parser.js
│ │ │ │ ├── socket.js
│ │ │ │ ├── transport.js
│ │ │ │ ├── transports
│ │ │ │ ├── flashsocket.js
│ │ │ │ ├── index.js
│ │ │ │ ├── polling-jsonp.js
│ │ │ │ ├── polling-xhr.js
│ │ │ │ ├── polling.js
│ │ │ │ └── websocket.js
│ │ │ │ └── util.js
│ │ ├── learnboost-socket.io-protocol
│ │ │ ├── component.json
│ │ │ └── index.js
│ │ ├── timoxley-to-array
│ │ │ ├── component.json
│ │ │ └── index.js
│ │ └── visionmedia-debug
│ │ │ ├── component.json
│ │ │ ├── debug.js
│ │ │ └── index.js
│ ├── dist
│ │ ├── WebSocketMain.swf
│ │ ├── WebSocketMainInsecure.swf
│ │ ├── socket.io.js
│ │ └── socket.io.min.js
│ ├── lib
│ │ ├── events.js
│ │ ├── io.js
│ │ ├── json.js
│ │ ├── namespace.js
│ │ ├── parser.js
│ │ ├── socket.js
│ │ ├── transport.js
│ │ ├── transports
│ │ │ ├── flashsocket.js
│ │ │ ├── htmlfile.js
│ │ │ ├── jsonp-polling.js
│ │ │ ├── websocket.js
│ │ │ ├── xhr-polling.js
│ │ │ └── xhr.js
│ │ ├── util.js
│ │ └── vendor
│ │ │ └── web-socket-js
│ │ │ ├── .npmignore
│ │ │ ├── README.md
│ │ │ ├── WebSocketMain.swf
│ │ │ ├── WebSocketMainInsecure.zip
│ │ │ ├── flash-src
│ │ │ ├── IWebSocketLogger.as
│ │ │ ├── WebSocket.as
│ │ │ ├── WebSocketEvent.as
│ │ │ ├── WebSocketMain.as
│ │ │ ├── WebSocketMainInsecure.as
│ │ │ ├── build.sh
│ │ │ └── com
│ │ │ │ ├── adobe
│ │ │ │ └── net
│ │ │ │ │ └── proxies
│ │ │ │ │ └── RFC2817Socket.as
│ │ │ │ ├── gsolo
│ │ │ │ └── encryption
│ │ │ │ │ └── MD5.as
│ │ │ │ └── hurlant
│ │ │ │ ├── crypto
│ │ │ │ ├── Crypto.as
│ │ │ │ ├── cert
│ │ │ │ │ ├── MozillaRootCertificates.as
│ │ │ │ │ ├── X509Certificate.as
│ │ │ │ │ └── X509CertificateCollection.as
│ │ │ │ ├── hash
│ │ │ │ │ ├── HMAC.as
│ │ │ │ │ ├── IHMAC.as
│ │ │ │ │ ├── IHash.as
│ │ │ │ │ ├── MAC.as
│ │ │ │ │ ├── MD2.as
│ │ │ │ │ ├── MD5.as
│ │ │ │ │ ├── SHA1.as
│ │ │ │ │ ├── SHA224.as
│ │ │ │ │ ├── SHA256.as
│ │ │ │ │ └── SHABase.as
│ │ │ │ ├── prng
│ │ │ │ │ ├── ARC4.as
│ │ │ │ │ ├── IPRNG.as
│ │ │ │ │ ├── Random.as
│ │ │ │ │ └── TLSPRF.as
│ │ │ │ ├── rsa
│ │ │ │ │ └── RSAKey.as
│ │ │ │ ├── symmetric
│ │ │ │ │ ├── AESKey.as
│ │ │ │ │ ├── BlowFishKey.as
│ │ │ │ │ ├── CBCMode.as
│ │ │ │ │ ├── CFB8Mode.as
│ │ │ │ │ ├── CFBMode.as
│ │ │ │ │ ├── CTRMode.as
│ │ │ │ │ ├── DESKey.as
│ │ │ │ │ ├── ECBMode.as
│ │ │ │ │ ├── ICipher.as
│ │ │ │ │ ├── IMode.as
│ │ │ │ │ ├── IPad.as
│ │ │ │ │ ├── IStreamCipher.as
│ │ │ │ │ ├── ISymmetricKey.as
│ │ │ │ │ ├── IVMode.as
│ │ │ │ │ ├── NullPad.as
│ │ │ │ │ ├── OFBMode.as
│ │ │ │ │ ├── PKCS5.as
│ │ │ │ │ ├── SSLPad.as
│ │ │ │ │ ├── SimpleIVMode.as
│ │ │ │ │ ├── TLSPad.as
│ │ │ │ │ ├── TripleDESKey.as
│ │ │ │ │ ├── XTeaKey.as
│ │ │ │ │ ├── aeskey.pl
│ │ │ │ │ └── dump.txt
│ │ │ │ ├── tests
│ │ │ │ │ ├── AESKeyTest.as
│ │ │ │ │ ├── ARC4Test.as
│ │ │ │ │ ├── BigIntegerTest.as
│ │ │ │ │ ├── BlowFishKeyTest.as
│ │ │ │ │ ├── CBCModeTest.as
│ │ │ │ │ ├── CFB8ModeTest.as
│ │ │ │ │ ├── CFBModeTest.as
│ │ │ │ │ ├── CTRModeTest.as
│ │ │ │ │ ├── DESKeyTest.as
│ │ │ │ │ ├── ECBModeTest.as
│ │ │ │ │ ├── HMACTest.as
│ │ │ │ │ ├── ITestHarness.as
│ │ │ │ │ ├── MD2Test.as
│ │ │ │ │ ├── MD5Test.as
│ │ │ │ │ ├── OFBModeTest.as
│ │ │ │ │ ├── RSAKeyTest.as
│ │ │ │ │ ├── SHA1Test.as
│ │ │ │ │ ├── SHA224Test.as
│ │ │ │ │ ├── SHA256Test.as
│ │ │ │ │ ├── TLSPRFTest.as
│ │ │ │ │ ├── TestCase.as
│ │ │ │ │ ├── TripleDESKeyTest.as
│ │ │ │ │ └── XTeaKeyTest.as
│ │ │ │ └── tls
│ │ │ │ │ ├── BulkCiphers.as
│ │ │ │ │ ├── CipherSuites.as
│ │ │ │ │ ├── IConnectionState.as
│ │ │ │ │ ├── ISecurityParameters.as
│ │ │ │ │ ├── KeyExchanges.as
│ │ │ │ │ ├── MACs.as
│ │ │ │ │ ├── SSLConnectionState.as
│ │ │ │ │ ├── SSLEvent.as
│ │ │ │ │ ├── SSLSecurityParameters.as
│ │ │ │ │ ├── TLSConfig.as
│ │ │ │ │ ├── TLSConnectionState.as
│ │ │ │ │ ├── TLSEngine.as
│ │ │ │ │ ├── TLSError.as
│ │ │ │ │ ├── TLSEvent.as
│ │ │ │ │ ├── TLSSecurityParameters.as
│ │ │ │ │ ├── TLSSocket.as
│ │ │ │ │ ├── TLSSocketEvent.as
│ │ │ │ │ └── TLSTest.as
│ │ │ │ ├── math
│ │ │ │ ├── BarrettReduction.as
│ │ │ │ ├── BigInteger.as
│ │ │ │ ├── ClassicReduction.as
│ │ │ │ ├── IReduction.as
│ │ │ │ ├── MontgomeryReduction.as
│ │ │ │ ├── NullReduction.as
│ │ │ │ └── bi_internal.as
│ │ │ │ └── util
│ │ │ │ ├── ArrayUtil.as
│ │ │ │ ├── Base64.as
│ │ │ │ ├── Hex.as
│ │ │ │ ├── Memory.as
│ │ │ │ └── der
│ │ │ │ ├── ByteString.as
│ │ │ │ ├── DER.as
│ │ │ │ ├── IAsn1Type.as
│ │ │ │ ├── Integer.as
│ │ │ │ ├── OID.as
│ │ │ │ ├── ObjectIdentifier.as
│ │ │ │ ├── PEM.as
│ │ │ │ ├── PrintableString.as
│ │ │ │ ├── Sequence.as
│ │ │ │ ├── Set.as
│ │ │ │ ├── Type.as
│ │ │ │ └── UTCTime.as
│ │ │ ├── sample.html
│ │ │ ├── swfobject.js
│ │ │ └── web_socket.js
│ ├── package.json
│ └── test
│ │ ├── events.test.js
│ │ ├── io.test.js
│ │ ├── node
│ │ ├── builder.common.js
│ │ └── builder.test.js
│ │ ├── parser.test.js
│ │ ├── socket.test.js
│ │ ├── util.test.js
│ │ └── worker.js
├── socket.io
│ ├── .npmignore
│ ├── .travis.yml
│ ├── History.md
│ ├── LICENSE
│ ├── Makefile
│ ├── Readme.md
│ ├── benchmarks
│ │ ├── decode.bench.js
│ │ ├── encode.bench.js
│ │ └── runner.js
│ ├── index.js
│ ├── latest
│ ├── lib
│ │ ├── logger.js
│ │ ├── manager.js
│ │ ├── namespace.js
│ │ ├── parser.js
│ │ ├── socket.io.js
│ │ ├── socket.js
│ │ ├── static.js
│ │ ├── store.js
│ │ ├── stores
│ │ │ ├── memory.js
│ │ │ └── redis.js
│ │ ├── transport.js
│ │ ├── transports
│ │ │ ├── flashsocket.js
│ │ │ ├── htmlfile.js
│ │ │ ├── http-polling.js
│ │ │ ├── http.js
│ │ │ ├── index.js
│ │ │ ├── jsonp-polling.js
│ │ │ ├── websocket.js
│ │ │ ├── websocket
│ │ │ │ ├── default.js
│ │ │ │ ├── hybi-07-12.js
│ │ │ │ ├── hybi-16.js
│ │ │ │ └── index.js
│ │ │ └── xhr-polling.js
│ │ └── util.js
│ └── package.json
├── statuses
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── codes.json
│ ├── index.js
│ └── package.json
├── streamsearch
│ ├── LICENSE
│ ├── README.md
│ ├── lib
│ │ └── sbmh.js
│ └── package.json
├── string_decoder
│ ├── .npmignore
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── tinycolor
│ ├── .npmignore
│ ├── README.md
│ ├── example.js
│ ├── package.json
│ └── tinycolor.js
├── type-is
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── typedarray
│ ├── .travis.yml
│ ├── LICENSE
│ ├── example
│ │ └── tarray.js
│ ├── index.js
│ ├── package.json
│ ├── readme.markdown
│ └── test
│ │ ├── server
│ │ └── undef_globals.js
│ │ └── tarray.js
├── uglify-js
│ ├── .npmignore
│ ├── README.html
│ ├── README.org
│ ├── bin
│ │ └── uglifyjs
│ ├── docstyle.css
│ ├── lib
│ │ ├── object-ast.js
│ │ ├── parse-js.js
│ │ ├── process.js
│ │ └── squeeze-more.js
│ ├── package.json
│ ├── package.json~
│ ├── test
│ │ ├── beautify.js
│ │ ├── testparser.js
│ │ └── unit
│ │ │ ├── compress
│ │ │ ├── expected
│ │ │ │ ├── array1.js
│ │ │ │ ├── array2.js
│ │ │ │ ├── array3.js
│ │ │ │ ├── array4.js
│ │ │ │ ├── assignment.js
│ │ │ │ ├── concatstring.js
│ │ │ │ ├── const.js
│ │ │ │ ├── empty-blocks.js
│ │ │ │ ├── forstatement.js
│ │ │ │ ├── if.js
│ │ │ │ ├── ifreturn.js
│ │ │ │ ├── ifreturn2.js
│ │ │ │ ├── issue10.js
│ │ │ │ ├── issue11.js
│ │ │ │ ├── issue13.js
│ │ │ │ ├── issue14.js
│ │ │ │ ├── issue16.js
│ │ │ │ ├── issue17.js
│ │ │ │ ├── issue20.js
│ │ │ │ ├── issue21.js
│ │ │ │ ├── issue25.js
│ │ │ │ ├── issue27.js
│ │ │ │ ├── issue278.js
│ │ │ │ ├── issue28.js
│ │ │ │ ├── issue29.js
│ │ │ │ ├── issue30.js
│ │ │ │ ├── issue34.js
│ │ │ │ ├── issue4.js
│ │ │ │ ├── issue48.js
│ │ │ │ ├── issue50.js
│ │ │ │ ├── issue53.js
│ │ │ │ ├── issue54.1.js
│ │ │ │ ├── issue68.js
│ │ │ │ ├── issue69.js
│ │ │ │ ├── issue9.js
│ │ │ │ ├── mangle.js
│ │ │ │ ├── null_string.js
│ │ │ │ ├── strict-equals.js
│ │ │ │ ├── var.js
│ │ │ │ ├── whitespace.js
│ │ │ │ └── with.js
│ │ │ └── test
│ │ │ │ ├── array1.js
│ │ │ │ ├── array2.js
│ │ │ │ ├── array3.js
│ │ │ │ ├── array4.js
│ │ │ │ ├── assignment.js
│ │ │ │ ├── concatstring.js
│ │ │ │ ├── const.js
│ │ │ │ ├── empty-blocks.js
│ │ │ │ ├── forstatement.js
│ │ │ │ ├── if.js
│ │ │ │ ├── ifreturn.js
│ │ │ │ ├── ifreturn2.js
│ │ │ │ ├── issue10.js
│ │ │ │ ├── issue11.js
│ │ │ │ ├── issue13.js
│ │ │ │ ├── issue14.js
│ │ │ │ ├── issue16.js
│ │ │ │ ├── issue17.js
│ │ │ │ ├── issue20.js
│ │ │ │ ├── issue21.js
│ │ │ │ ├── issue25.js
│ │ │ │ ├── issue27.js
│ │ │ │ ├── issue278.js
│ │ │ │ ├── issue28.js
│ │ │ │ ├── issue29.js
│ │ │ │ ├── issue30.js
│ │ │ │ ├── issue34.js
│ │ │ │ ├── issue4.js
│ │ │ │ ├── issue48.js
│ │ │ │ ├── issue50.js
│ │ │ │ ├── issue53.js
│ │ │ │ ├── issue54.1.js
│ │ │ │ ├── issue68.js
│ │ │ │ ├── issue69.js
│ │ │ │ ├── issue9.js
│ │ │ │ ├── mangle.js
│ │ │ │ ├── null_string.js
│ │ │ │ ├── strict-equals.js
│ │ │ │ ├── var.js
│ │ │ │ ├── whitespace.js
│ │ │ │ └── with.js
│ │ │ └── scripts.js
│ ├── tmp
│ │ ├── 269.js
│ │ ├── app.js
│ │ ├── embed-tokens.js
│ │ ├── goto.js
│ │ ├── goto2.js
│ │ ├── hoist.js
│ │ ├── instrument.js
│ │ ├── instrument2.js
│ │ ├── liftvars.js
│ │ ├── test.js
│ │ ├── uglify-hangs.js
│ │ └── uglify-hangs2.js
│ └── uglify-js.js
├── uid-safe
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── uid2
│ ├── index.js
│ └── package.json
├── unpipe
│ ├── HISTORY.md
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── util-deprecate
│ ├── History.md
│ ├── LICENSE
│ ├── README.md
│ ├── browser.js
│ ├── node.js
│ └── package.json
├── utils-merge
│ ├── .travis.yml
│ ├── LICENSE
│ ├── README.md
│ ├── index.js
│ └── package.json
├── ws
│ ├── .npmignore
│ ├── .travis.yml
│ ├── History.md
│ ├── Makefile
│ ├── README.md
│ ├── bin
│ │ └── wscat
│ ├── binding.gyp
│ ├── build
│ │ ├── Release
│ │ │ └── obj
│ │ │ │ ├── bufferutil
│ │ │ │ ├── bufferutil.tlog
│ │ │ │ │ ├── CL.command.1.tlog
│ │ │ │ │ ├── CL.read.1.tlog
│ │ │ │ │ ├── CL.write.1.tlog
│ │ │ │ │ ├── bufferutil.lastbuildstate
│ │ │ │ │ └── unsuccessfulbuild
│ │ │ │ ├── vc140.pdb
│ │ │ │ └── win_delay_load_hook.obj
│ │ │ │ └── validation
│ │ │ │ ├── validation.tlog
│ │ │ │ ├── CL.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── unsuccessfulbuild
│ │ │ │ └── validation.lastbuildstate
│ │ │ │ ├── vc140.pdb
│ │ │ │ └── win_delay_load_hook.obj
│ │ ├── binding.sln
│ │ ├── bufferutil.vcxproj
│ │ ├── bufferutil.vcxproj.filters
│ │ ├── config.gypi
│ │ ├── validation.vcxproj
│ │ └── validation.vcxproj.filters
│ ├── builderror.log
│ ├── index.js
│ ├── lib
│ │ ├── BufferPool.js
│ │ ├── BufferUtil.fallback.js
│ │ ├── BufferUtil.js
│ │ ├── ErrorCodes.js
│ │ ├── Receiver.hixie.js
│ │ ├── Receiver.js
│ │ ├── Sender.hixie.js
│ │ ├── Sender.js
│ │ ├── Validation.fallback.js
│ │ ├── Validation.js
│ │ ├── WebSocket.js
│ │ ├── WebSocketServer.js
│ │ └── browser.js
│ ├── node_modules
│ │ └── commander
│ │ │ ├── Readme.md
│ │ │ ├── index.js
│ │ │ └── package.json
│ ├── package.json
│ └── src
│ │ ├── bufferutil.cc
│ │ └── validation.cc
├── xmlhttprequest
│ ├── README.md
│ ├── autotest.watchr
│ ├── example
│ │ └── demo.js
│ ├── lib
│ │ └── XMLHttpRequest.js
│ ├── package.json
│ └── tests
│ │ ├── test-constants.js
│ │ ├── test-events.js
│ │ ├── test-exceptions.js
│ │ ├── test-headers.js
│ │ ├── test-request-methods.js
│ │ ├── test-request-protocols.js
│ │ └── testdata.txt
├── xtend
│ ├── .jshintrc
│ ├── .npmignore
│ ├── LICENCE
│ ├── Makefile
│ ├── README.md
│ ├── immutable.js
│ ├── mutable.js
│ ├── package.json
│ └── test.js
└── zeparser
│ ├── .npmignore
│ ├── LICENSE
│ ├── README
│ ├── Tokenizer.js
│ ├── ZeParser.js
│ ├── benchmark.html
│ ├── index.js
│ ├── package.json
│ ├── test-parser.html
│ ├── test-tokenizer.html
│ ├── tests.js
│ └── unicodecategories.js
├── npm-debug.log.3359136013
├── package.json
├── public
├── .DS_Store
├── css
│ ├── font-awesome.min.css
│ ├── main.css
│ ├── normalize.css
│ └── normalize.min.css
├── data
│ └── temp
├── favicon.ico
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ └── fontawesome-webfont.woff2
├── img
│ ├── back.png
│ ├── back1.jpg
│ ├── back2.png
│ ├── background.jpg
│ ├── login-back.jpg
│ ├── logo.png
│ ├── logo1.png
│ └── logo2.png
├── js
│ ├── jquery.min.js
│ ├── main.js
│ ├── typeahead.min.js
│ └── vendor
│ │ ├── jquery-1.10.1.min.js
│ │ ├── jquery.timeago.js
│ │ └── modernizr-2.6.2-respond-1.1.0.min.js
└── sound
│ └── alert.mp3
├── server.js
└── views
├── homepage.ejs
├── layout.ejs
├── login.ejs
├── profile.ejs
└── welcome.ejs
/node_modules/.bin/express:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3 |
4 | case `uname` in
5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
6 | esac
7 |
8 | if [ -x "$basedir/node" ]; then
9 | "$basedir/node" "$basedir/../express/bin/express" "$@"
10 | ret=$?
11 | else
12 | node "$basedir/../express/bin/express" "$@"
13 | ret=$?
14 | fi
15 | exit $ret
16 |
--------------------------------------------------------------------------------
/node_modules/.bin/express.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\express\bin\express" %*
3 | ) ELSE (
4 | @SETLOCAL
5 | @SET PATHEXT=%PATHEXT:;.JS;=;%
6 | node "%~dp0\..\express\bin\express" %*
7 | )
--------------------------------------------------------------------------------
/node_modules/.bin/uglifyjs:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3 |
4 | case `uname` in
5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
6 | esac
7 |
8 | if [ -x "$basedir/node" ]; then
9 | "$basedir/node" "$basedir/../uglify-js/bin/uglifyjs" "$@"
10 | ret=$?
11 | else
12 | node "$basedir/../uglify-js/bin/uglifyjs" "$@"
13 | ret=$?
14 | fi
15 | exit $ret
16 |
--------------------------------------------------------------------------------
/node_modules/.bin/uglifyjs.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\uglify-js\bin\uglifyjs" %*
3 | ) ELSE (
4 | @SETLOCAL
5 | @SET PATHEXT=%PATHEXT:;.JS;=;%
6 | node "%~dp0\..\uglify-js\bin\uglifyjs" %*
7 | )
--------------------------------------------------------------------------------
/node_modules/.bin/wscat:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3 |
4 | case `uname` in
5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
6 | esac
7 |
8 | if [ -x "$basedir/node" ]; then
9 | "$basedir/node" "$basedir/../ws/bin/wscat" "$@"
10 | ret=$?
11 | else
12 | node "$basedir/../ws/bin/wscat" "$@"
13 | ret=$?
14 | fi
15 | exit $ret
16 |
--------------------------------------------------------------------------------
/node_modules/.bin/wscat.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\ws\bin\wscat" %*
3 | ) ELSE (
4 | @SETLOCAL
5 | @SET PATHEXT=%PATHEXT:;.JS;=;%
6 | node "%~dp0\..\ws\bin\wscat" %*
7 | )
--------------------------------------------------------------------------------
/node_modules/active-x-obfuscator/..gitignore.un~:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/active-x-obfuscator/..gitignore.un~
--------------------------------------------------------------------------------
/node_modules/active-x-obfuscator/.Readme.md.un~:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/active-x-obfuscator/.Readme.md.un~
--------------------------------------------------------------------------------
/node_modules/active-x-obfuscator/.index.js.un~:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/active-x-obfuscator/.index.js.un~
--------------------------------------------------------------------------------
/node_modules/active-x-obfuscator/.npmignore:
--------------------------------------------------------------------------------
1 | *.un~
2 | /node_modules
3 |
--------------------------------------------------------------------------------
/node_modules/active-x-obfuscator/.package.json.un~:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/active-x-obfuscator/.package.json.un~
--------------------------------------------------------------------------------
/node_modules/active-x-obfuscator/.test.js.un~:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/active-x-obfuscator/.test.js.un~
--------------------------------------------------------------------------------
/node_modules/append-field/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 |
--------------------------------------------------------------------------------
/node_modules/append-field/index.js:
--------------------------------------------------------------------------------
1 | var parsePath = require('./lib/parse-path')
2 | var setValue = require('./lib/set-value')
3 |
4 | function appendField (store, key, value) {
5 | var steps = parsePath(key)
6 |
7 | steps.reduce(function (context, step) {
8 | return setValue(context, step, context[step.key], value)
9 | }, store)
10 | }
11 |
12 | module.exports = appendField
13 |
--------------------------------------------------------------------------------
/node_modules/base64id/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 |
--------------------------------------------------------------------------------
/node_modules/base64id/README.md:
--------------------------------------------------------------------------------
1 | base64id
2 | ========
3 |
4 | Node.js module that generates a base64 id.
5 |
6 | Uses crypto.randomBytes when available, falls back to unsafe methods for node.js <= 0.4.
7 |
8 | To increase performance, random bytes are buffered to minimize the number of synchronous calls to crypto.randomBytes.
9 |
10 | ## Installation
11 |
12 | $ npm install mongoose
13 |
14 | ## Usage
15 |
16 | var base64id = require('base64id');
17 |
18 | var id = base64id.generateId();
19 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/debug/.coveralls.yml:
--------------------------------------------------------------------------------
1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve
2 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/debug/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "node": true
5 | },
6 | "rules": {
7 | "no-console": 0,
8 | "no-empty": [1, { "allowEmptyCatch": true }]
9 | },
10 | "extends": "eslint:recommended"
11 | }
12 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/debug/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 | example
5 | *.sock
6 | dist
7 | yarn.lock
8 | coverage
9 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/debug/.travis.yml:
--------------------------------------------------------------------------------
1 |
2 | language: node_js
3 | node_js:
4 | - "6"
5 | - "5"
6 | - "4"
7 |
8 | install:
9 | - make node_modules
10 |
11 | script:
12 | - make lint
13 | - make test
14 | - make coveralls
15 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/debug/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "debug",
3 | "repo": "visionmedia/debug",
4 | "description": "small debugging utility",
5 | "version": "2.6.1",
6 | "keywords": [
7 | "debug",
8 | "log",
9 | "debugger"
10 | ],
11 | "main": "src/browser.js",
12 | "scripts": [
13 | "src/browser.js",
14 | "src/debug.js"
15 | ],
16 | "dependencies": {
17 | "rauchg/ms.js": "0.7.1"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/debug/node.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./src/node');
2 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/debug/src/index.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Detect Electron renderer process, which is node, but we should
3 | * treat as a browser.
4 | */
5 |
6 | if (typeof process !== 'undefined' && process.type === 'renderer') {
7 | module.exports = require('./browser.js');
8 | } else {
9 | module.exports = require('./node.js');
10 | }
11 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/qs/.eslintignore:
--------------------------------------------------------------------------------
1 | dist
2 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/qs/lib/formats.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | var replace = String.prototype.replace;
4 | var percentTwenties = /%20/g;
5 |
6 | module.exports = {
7 | 'default': 'RFC3986',
8 | formatters: {
9 | RFC1738: function (value) {
10 | return replace.call(value, percentTwenties, '+');
11 | },
12 | RFC3986: function (value) {
13 | return value;
14 | }
15 | },
16 | RFC1738: 'RFC1738',
17 | RFC3986: 'RFC3986'
18 | };
19 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/qs/lib/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | var stringify = require('./stringify');
4 | var parse = require('./parse');
5 | var formats = require('./formats');
6 |
7 | module.exports = {
8 | formats: formats,
9 | parse: parse,
10 | stringify: stringify
11 | };
12 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/qs/test/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "rules": {
3 | "consistent-return": 2,
4 | "max-lines": 0,
5 | "max-nested-callbacks": [2, 3],
6 | "max-statements": 0,
7 | "no-extend-native": 0,
8 | "no-magic-numbers": 0,
9 | "sort-keys": 0
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/node_modules/body-parser/node_modules/qs/test/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | require('./parse');
4 |
5 | require('./stringify');
6 |
7 | require('./utils');
8 |
--------------------------------------------------------------------------------
/node_modules/bson/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 | - 0.9 # development version of 0.8, may be unstable
--------------------------------------------------------------------------------
/node_modules/bson/Makefile:
--------------------------------------------------------------------------------
1 | NODE = node
2 | NPM = npm
3 | NODEUNIT = node_modules/nodeunit/bin/nodeunit
4 |
5 | all: clean node_gyp
6 |
7 | test: clean node_gyp
8 | npm test
9 |
10 | node_gyp: clean
11 | node-gyp configure build
12 |
13 | clean:
14 | node-gyp clean
15 |
16 | browserify:
17 | node_modules/.bin/onejs build browser_build/package.json browser_build/bson.js
18 |
19 | .PHONY: all
20 |
--------------------------------------------------------------------------------
/node_modules/bson/binding.gyp:
--------------------------------------------------------------------------------
1 | {
2 | 'targets': [
3 | {
4 | 'target_name': 'bson',
5 | 'sources': [ 'ext/bson.cc' ],
6 | 'cflags!': [ '-fno-exceptions' ],
7 | 'cflags_cc!': [ '-fno-exceptions' ],
8 | 'conditions': [
9 | ['OS=="mac"', {
10 | 'xcode_settings': {
11 | 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES'
12 | }
13 | }]
14 | ]
15 | }
16 | ]
17 | }
--------------------------------------------------------------------------------
/node_modules/bson/browser_build/package.json:
--------------------------------------------------------------------------------
1 | { "name" : "bson"
2 | , "description" : "A bson parser for node.js and the browser"
3 | , "main": "../lib/bson/bson"
4 | , "directories" : { "lib" : "../lib/bson" }
5 | , "engines" : { "node" : ">=0.6.0" }
6 | , "licenses" : [ { "type" : "Apache License, Version 2.0"
7 | , "url" : "http://www.apache.org/licenses/LICENSE-2.0" } ]
8 | }
9 |
--------------------------------------------------------------------------------
/node_modules/bson/build/Release/obj/bson/bson.tlog/CL.command.1.tlog:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/bson/build/Release/obj/bson/bson.tlog/CL.command.1.tlog
--------------------------------------------------------------------------------
/node_modules/bson/build/Release/obj/bson/bson.tlog/CL.read.1.tlog:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/bson/build/Release/obj/bson/bson.tlog/CL.read.1.tlog
--------------------------------------------------------------------------------
/node_modules/bson/build/Release/obj/bson/bson.tlog/CL.write.1.tlog:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/bson/build/Release/obj/bson/bson.tlog/CL.write.1.tlog
--------------------------------------------------------------------------------
/node_modules/bson/build/Release/obj/bson/bson.tlog/bson.lastbuildstate:
--------------------------------------------------------------------------------
1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=8.1
2 | Release|x64|D:\DTU_related\3rd YEAR\SIXTH SEM\WT project\nodejscourse\node_modules\bson\build\|
3 |
--------------------------------------------------------------------------------
/node_modules/bson/build/Release/obj/bson/bson.tlog/unsuccessfulbuild:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/bson/build/Release/obj/bson/bson.tlog/unsuccessfulbuild
--------------------------------------------------------------------------------
/node_modules/bson/build/Release/obj/bson/vc140.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/bson/build/Release/obj/bson/vc140.pdb
--------------------------------------------------------------------------------
/node_modules/bson/build/Release/obj/bson/win_delay_load_hook.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/bson/build/Release/obj/bson/win_delay_load_hook.obj
--------------------------------------------------------------------------------
/node_modules/bson/build_browser.js:
--------------------------------------------------------------------------------
1 | require('one');
2 |
3 | one('./package.json')
4 | .tie('bson', BSON)
5 | // .exclude('buffer')
6 | .tie('buffer', {})
7 | .save('./browser_build/bson.js')
--------------------------------------------------------------------------------
/node_modules/bson/ext/win32/ia32/bson.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/bson/ext/win32/ia32/bson.node
--------------------------------------------------------------------------------
/node_modules/bson/ext/win32/x64/bson.node:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/bson/ext/win32/x64/bson.node
--------------------------------------------------------------------------------
/node_modules/bson/lib/bson/max_key.js:
--------------------------------------------------------------------------------
1 | /**
2 | * A class representation of the BSON MaxKey type.
3 | *
4 | * @class Represents the BSON MaxKey type.
5 | * @return {MaxKey}
6 | */
7 | function MaxKey() {
8 | if(!(this instanceof MaxKey)) return new MaxKey();
9 |
10 | this._bsontype = 'MaxKey';
11 | }
12 |
13 | exports.MaxKey = MaxKey;
--------------------------------------------------------------------------------
/node_modules/bson/lib/bson/min_key.js:
--------------------------------------------------------------------------------
1 | /**
2 | * A class representation of the BSON MinKey type.
3 | *
4 | * @class Represents the BSON MinKey type.
5 | * @return {MinKey}
6 | */
7 | function MinKey() {
8 | if(!(this instanceof MinKey)) return new MinKey();
9 |
10 | this._bsontype = 'MinKey';
11 | }
12 |
13 | exports.MinKey = MinKey;
--------------------------------------------------------------------------------
/node_modules/bson/tools/jasmine-1.1.0/jasmine_favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/bson/tools/jasmine-1.1.0/jasmine_favicon.png
--------------------------------------------------------------------------------
/node_modules/buffer-crc32/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/node_modules/buffer-crc32/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 | notifications:
6 | email:
7 | recipients:
8 | - brianloveswords@gmail.com
--------------------------------------------------------------------------------
/node_modules/busboy/test/test.js:
--------------------------------------------------------------------------------
1 | require('fs').readdirSync(__dirname).forEach(function(f) {
2 | if (f.substr(0, 5) === 'test-')
3 | require('./' + f);
4 | });
--------------------------------------------------------------------------------
/node_modules/bytes/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/node_modules/bytes/History.md:
--------------------------------------------------------------------------------
1 |
2 | 0.2.0 / 2012-10-28
3 | ==================
4 |
5 | * bytes(200).should.eql('200b')
6 |
7 | 0.1.0 / 2012-07-04
8 | ==================
9 |
10 | * add bytes to string conversion [yields]
11 |
--------------------------------------------------------------------------------
/node_modules/bytes/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @./node_modules/.bin/mocha \
4 | --reporter spec \
5 | --require should
6 |
7 | .PHONY: test
--------------------------------------------------------------------------------
/node_modules/bytes/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "bytes",
3 | "description": "byte size string parser / serializer",
4 | "keywords": ["bytes", "utility"],
5 | "version": "0.1.0",
6 | "scripts": ["index.js"]
7 | }
8 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/isarray/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/isarray/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/isarray/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @node_modules/.bin/tape test.js
4 |
5 | .PHONY: test
6 |
7 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/isarray/index.js:
--------------------------------------------------------------------------------
1 | var toString = {}.toString;
2 |
3 | module.exports = Array.isArray || function (arr) {
4 | return toString.call(arr) == '[object Array]';
5 | };
6 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/isarray/test.js:
--------------------------------------------------------------------------------
1 | var isArray = require('./');
2 | var test = require('tape');
3 |
4 | test('is array', function(t){
5 | t.ok(isArray([]));
6 | t.notOk(isArray({}));
7 | t.notOk(isArray(null));
8 | t.notOk(isArray(false));
9 |
10 | var obj = {};
11 | obj[0] = true;
12 | t.notOk(isArray(obj));
13 |
14 | var arr = [];
15 | arr.foo = 'bar';
16 | t.ok(isArray(arr));
17 |
18 | t.end();
19 | });
20 |
21 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/readable-stream/.npmignore:
--------------------------------------------------------------------------------
1 | build/
2 | test/
3 | examples/
4 | fs.js
5 | zlib.js
6 | .zuul.yml
7 | .nyc_output
8 | coverage
9 | docs/
10 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/readable-stream/duplex-browser.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./lib/_stream_duplex.js');
2 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/readable-stream/duplex.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./readable').Duplex
2 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/stream-browser.js:
--------------------------------------------------------------------------------
1 | module.exports = require('events').EventEmitter;
2 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/readable-stream/lib/internal/streams/stream.js:
--------------------------------------------------------------------------------
1 | module.exports = require('stream');
2 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/readable-stream/passthrough.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./readable').PassThrough
2 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/readable-stream/readable-browser.js:
--------------------------------------------------------------------------------
1 | exports = module.exports = require('./lib/_stream_readable.js');
2 | exports.Stream = exports;
3 | exports.Readable = exports;
4 | exports.Writable = require('./lib/_stream_writable.js');
5 | exports.Duplex = require('./lib/_stream_duplex.js');
6 | exports.Transform = require('./lib/_stream_transform.js');
7 | exports.PassThrough = require('./lib/_stream_passthrough.js');
8 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/readable-stream/transform.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./readable').Transform
2 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/readable-stream/writable-browser.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./lib/_stream_writable.js');
2 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/readable-stream/writable.js:
--------------------------------------------------------------------------------
1 | var Stream = require("stream")
2 | var Writable = require("./lib/_stream_writable.js")
3 |
4 | if (process.env.READABLE_STREAM === 'disable') {
5 | module.exports = Stream && Stream.Writable || Writable
6 | }
7 |
8 | module.exports = Writable
9 |
--------------------------------------------------------------------------------
/node_modules/concat-stream/node_modules/string_decoder/.npmignore:
--------------------------------------------------------------------------------
1 | build
2 | test
3 |
--------------------------------------------------------------------------------
/node_modules/connect/.npmignore:
--------------------------------------------------------------------------------
1 | *.markdown
2 | *.md
3 | .git*
4 | Makefile
5 | benchmarks/
6 | docs/
7 | examples/
8 | install.sh
9 | support/
10 | test/
11 | .DS_Store
12 | coverage.html
13 |
--------------------------------------------------------------------------------
/node_modules/connect/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
--------------------------------------------------------------------------------
/node_modules/connect/index.js:
--------------------------------------------------------------------------------
1 |
2 | module.exports = process.env.CONNECT_COV
3 | ? require('./lib-cov/connect')
4 | : require('./lib/connect');
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/error.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {error}
5 |
6 |
7 |
8 |
9 |
{title}
10 |
{statusCode} {error}
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/favicon.ico
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_add.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_attach.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_attach.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_code.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_copy.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_delete.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_edit.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_error.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_excel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_excel.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_find.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_find.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_gear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_gear.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_go.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_green.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_key.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_lightning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_lightning.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_link.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_link.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_paintbrush.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_paintbrush.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_paste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_paste.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_red.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_refresh.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_save.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_acrobat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_acrobat.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_actionscript.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_actionscript.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_add.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_c.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_camera.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_camera.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_cd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_cd.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_code.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_code_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_code_red.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_coldfusion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_coldfusion.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_compressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_compressed.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_copy.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_cplusplus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_cplusplus.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_csharp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_csharp.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_cup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_cup.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_database.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_database.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_delete.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_dvd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_dvd.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_edit.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_error.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_excel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_excel.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_find.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_find.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_flash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_flash.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_freehand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_freehand.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_gear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_gear.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_get.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_get.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_go.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_h.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_horizontal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_horizontal.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_key.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_lightning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_lightning.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_link.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_link.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_magnify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_magnify.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_medal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_medal.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_office.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_office.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_paint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_paint.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_paintbrush.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_paintbrush.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_paste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_paste.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_php.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_php.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_picture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_picture.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_powerpoint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_powerpoint.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_put.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_put.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_ruby.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_ruby.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_stack.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_stack.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_star.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_swoosh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_swoosh.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_text.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_text_width.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_text_width.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_tux.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_tux.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_vector.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_vector.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_visualstudio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_visualstudio.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_width.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_width.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_word.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_word.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_world.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_world.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_wrench.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_wrench.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_white_zip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_white_zip.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_word.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_word.png
--------------------------------------------------------------------------------
/node_modules/connect/lib/public/icons/page_world.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/connect/lib/public/icons/page_world.png
--------------------------------------------------------------------------------
/node_modules/connect/test.js:
--------------------------------------------------------------------------------
1 |
2 | var conn = require('./');
3 | var app = conn();
4 |
5 | app.use(conn.logger('dev'));
6 |
7 | app.listen(3000);
8 |
--------------------------------------------------------------------------------
/node_modules/content-type/HISTORY.md:
--------------------------------------------------------------------------------
1 | 1.0.2 / 2016-05-09
2 | ==================
3 |
4 | * perf: enable strict mode
5 |
6 | 1.0.1 / 2015-02-13
7 | ==================
8 |
9 | * Improve missing `Content-Type` header error message
10 |
11 | 1.0.0 / 2015-02-01
12 | ==================
13 |
14 | * Initial implementation, derived from `media-typer@0.3.0`
15 |
--------------------------------------------------------------------------------
/node_modules/cookie-parser/node_modules/cookie-signature/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 | *.sock
5 |
--------------------------------------------------------------------------------
/node_modules/cookie-signature/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 | *.sock
5 |
--------------------------------------------------------------------------------
/node_modules/cookie-signature/History.md:
--------------------------------------------------------------------------------
1 |
2 | 1.0.1 / 2013-04-15
3 | ==================
4 |
5 | * Revert "Changed underlying HMAC algo. to sha512."
6 | * Revert "Fix for timing attacks on MAC verification."
7 |
8 | 0.0.1 / 2010-01-03
9 | ==================
10 |
11 | * Initial release
12 |
--------------------------------------------------------------------------------
/node_modules/cookie-signature/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @./node_modules/.bin/mocha \
4 | --require should \
5 | --reporter spec
6 |
7 | .PHONY: test
--------------------------------------------------------------------------------
/node_modules/cookie/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/node_modules/cookie/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.6"
4 | - "0.8"
5 | - "0.10"
6 |
--------------------------------------------------------------------------------
/node_modules/cookie/test/mocha.opts:
--------------------------------------------------------------------------------
1 | --ui qunit
2 |
--------------------------------------------------------------------------------
/node_modules/core-util-is/README.md:
--------------------------------------------------------------------------------
1 | # core-util-is
2 |
3 | The `util.is*` functions introduced in Node v0.12.
4 |
--------------------------------------------------------------------------------
/node_modules/crc/lib/create_buffer.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | Object.defineProperty(exports, "__esModule", {
4 | value: true
5 | });
6 |
7 | var _buffer = require('buffer');
8 |
9 | var createBuffer = _buffer.Buffer.from && _buffer.Buffer.alloc && _buffer.Buffer.allocUnsafe && _buffer.Buffer.allocUnsafeSlow ? _buffer.Buffer.from
10 |
11 | // support for Node < 5.10
12 | : function (val) {
13 | return new _buffer.Buffer(val);
14 | };
15 |
16 | exports.default = createBuffer;
--------------------------------------------------------------------------------
/node_modules/crc/lib/define_crc.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 |
3 | Object.defineProperty(exports, "__esModule", {
4 | value: true
5 | });
6 |
7 | exports.default = function (model, calc) {
8 | var fn = function fn(buf, previous) {
9 | return calc(buf, previous) >>> 0;
10 | };
11 | fn.signed = calc;
12 | fn.unsigned = fn;
13 | fn.model = model;
14 |
15 | return fn;
16 | };
--------------------------------------------------------------------------------
/node_modules/crc/lib/index.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | module.exports = {
4 | crc1: require('./crc1'),
5 | crc8: require('./crc8'),
6 | crc81wire: require('./crc8_1wire'),
7 | crc16: require('./crc16'),
8 | crc16ccitt: require('./crc16_ccitt'),
9 | crc16modbus: require('./crc16_modbus'),
10 | crc16xmodem: require('./crc16_xmodem'),
11 | crc16kermit: require('./crc16_kermit'),
12 | crc24: require('./crc24'),
13 | crc32: require('./crc32')
14 | };
--------------------------------------------------------------------------------
/node_modules/debug/.coveralls.yml:
--------------------------------------------------------------------------------
1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve
2 |
--------------------------------------------------------------------------------
/node_modules/debug/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "node": true
5 | },
6 | "rules": {
7 | "no-console": 0,
8 | "no-empty": [1, { "allowEmptyCatch": true }]
9 | },
10 | "extends": "eslint:recommended"
11 | }
12 |
--------------------------------------------------------------------------------
/node_modules/debug/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 | example
5 | *.sock
6 | dist
7 | yarn.lock
8 | coverage
9 | bower.json
10 |
--------------------------------------------------------------------------------
/node_modules/debug/.travis.yml:
--------------------------------------------------------------------------------
1 |
2 | language: node_js
3 | node_js:
4 | - "6"
5 | - "5"
6 | - "4"
7 |
8 | install:
9 | - make node_modules
10 |
11 | script:
12 | - make lint
13 | - make test
14 | - make coveralls
15 |
--------------------------------------------------------------------------------
/node_modules/debug/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "debug",
3 | "repo": "visionmedia/debug",
4 | "description": "small debugging utility",
5 | "version": "2.6.4",
6 | "keywords": [
7 | "debug",
8 | "log",
9 | "debugger"
10 | ],
11 | "main": "src/browser.js",
12 | "scripts": [
13 | "src/browser.js",
14 | "src/debug.js"
15 | ],
16 | "dependencies": {
17 | "rauchg/ms.js": "0.7.1"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/node_modules/debug/node.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./src/node');
2 |
--------------------------------------------------------------------------------
/node_modules/debug/src/index.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Detect Electron renderer process, which is node, but we should
3 | * treat as a browser.
4 | */
5 |
6 | if (typeof process !== 'undefined' && process.type === 'renderer') {
7 | module.exports = require('./browser.js');
8 | } else {
9 | module.exports = require('./node.js');
10 | }
11 |
--------------------------------------------------------------------------------
/node_modules/depd/lib/compat/event-listener-count.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * depd
3 | * Copyright(c) 2015 Douglas Christopher Wilson
4 | * MIT Licensed
5 | */
6 |
7 | 'use strict'
8 |
9 | /**
10 | * Module exports.
11 | * @public
12 | */
13 |
14 | module.exports = eventListenerCount
15 |
16 | /**
17 | * Get the count of listeners on an event emitter of a specific type.
18 | */
19 |
20 | function eventListenerCount(emitter, type) {
21 | return emitter.listeners(type).length
22 | }
23 |
--------------------------------------------------------------------------------
/node_modules/dicer/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: cpp
3 | notifications:
4 | email: false
5 | env:
6 | matrix:
7 | - TRAVIS_NODE_VERSION="0.10"
8 | - TRAVIS_NODE_VERSION="0.12"
9 | - TRAVIS_NODE_VERSION="4"
10 | - TRAVIS_NODE_VERSION="5"
11 | install:
12 | - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
13 | - node --version
14 | - npm --version
15 | - npm install
16 | script: npm test
17 |
--------------------------------------------------------------------------------
/node_modules/dicer/lib/PartStream.js:
--------------------------------------------------------------------------------
1 | var inherits = require('util').inherits,
2 | ReadableStream = require('stream').Readable || require('readable-stream');
3 |
4 | function PartStream(opts) {
5 | ReadableStream.call(this, opts);
6 | }
7 | inherits(PartStream, ReadableStream);
8 |
9 | PartStream.prototype._read = function(n) {};
10 |
11 | module.exports = PartStream;
12 |
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part1:
--------------------------------------------------------------------------------
1 | put
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part1.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"_method\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/dicer/test/fixtures/many-noend/part2
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part2.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"profile[blog]\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/dicer/test/fixtures/many-noend/part3
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part3.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"profile[public_email]\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/dicer/test/fixtures/many-noend/part4
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part4.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"profile[interests]\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part5:
--------------------------------------------------------------------------------
1 | hello
2 |
3 | "quote"
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part5.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"profile[bio]\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part6:
--------------------------------------------------------------------------------
1 | Save
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part6.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"commit\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-noend/part7.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"media\"; filename=\"\""],
2 | "content-type": ["application/octet-stream"]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many-wrongboundary/preamble.error:
--------------------------------------------------------------------------------
1 | Preamble terminated early due to unexpected end of multipart data
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part1:
--------------------------------------------------------------------------------
1 | put
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part1.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"_method\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/dicer/test/fixtures/many/part2
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part2.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"profile[blog]\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/dicer/test/fixtures/many/part3
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part3.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"profile[public_email]\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/dicer/test/fixtures/many/part4
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part4.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"profile[interests]\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part5:
--------------------------------------------------------------------------------
1 | hello
2 |
3 | "quote"
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part5.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"profile[bio]\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part6:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/dicer/test/fixtures/many/part6
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part6.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"media\"; filename=\"\""],
2 | "content-type": ["application/octet-stream"]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part7:
--------------------------------------------------------------------------------
1 | Save
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/many/part7.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"commit\""]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/nested-full/part1:
--------------------------------------------------------------------------------
1 | bar
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/nested-full/part1.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"foo\""]}
2 |
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/nested-full/part2:
--------------------------------------------------------------------------------
1 | --BbC04y
2 | Content-Disposition: attachment; filename="file.txt"
3 | Content-Type: text/plain
4 |
5 | contents
6 | --BbC04y
7 | Content-Disposition: attachment; filename="flowers.jpg"
8 | Content-Type: image/jpeg
9 | Content-Transfer-Encoding: binary
10 |
11 | contents
12 | --BbC04y--
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/nested-full/part2.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"files\""],
2 | "content-type": ["multipart/mixed, boundary=BbC04y"]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/nested-full/preamble.header:
--------------------------------------------------------------------------------
1 | {"user-agent": ["foo bar baz"],
2 | "content-type": ["multipart/form-data; boundary=AaB03x"]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/nested/part1:
--------------------------------------------------------------------------------
1 | bar
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/nested/part1.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"foo\""]}
2 |
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/nested/part2:
--------------------------------------------------------------------------------
1 | --BbC04y
2 | Content-Disposition: attachment; filename="file.txt"
3 | Content-Type: text/plain
4 |
5 | contents
6 | --BbC04y
7 | Content-Disposition: attachment; filename="flowers.jpg"
8 | Content-Type: image/jpeg
9 | Content-Transfer-Encoding: binary
10 |
11 | contents
12 | --BbC04y--
--------------------------------------------------------------------------------
/node_modules/dicer/test/fixtures/nested/part2.header:
--------------------------------------------------------------------------------
1 | {"content-disposition": ["form-data; name=\"files\""],
2 | "content-type": ["multipart/mixed, boundary=BbC04y"]}
--------------------------------------------------------------------------------
/node_modules/dicer/test/test.js:
--------------------------------------------------------------------------------
1 | require('fs').readdirSync(__dirname).forEach(function(f) {
2 | if (f.substr(0, 5) === 'test-')
3 | require('./' + f);
4 | });
--------------------------------------------------------------------------------
/node_modules/ejs-locals/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | npm-debug.log
3 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/example/foo.css:
--------------------------------------------------------------------------------
1 | body {
2 | font: normal 16px/1.5 sans-serif;
3 | margin: 50px;
4 | }
5 | .better-than-dead {
6 | color: red;
7 | }
8 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/example/foo.js:
--------------------------------------------------------------------------------
1 |
2 | window.onload = function() {
3 | var p = document.createElement('p')
4 | p.innerText = 'P.S. foo.js was successfully loaded';
5 | document.body.appendChild(p);
6 | }
7 |
8 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/example/views/boilerplate.ejs:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | It's <%=who%>
5 | <%-scripts%>
6 | <%-stylesheets%>
7 |
8 |
9 |
10 | <%-blocks.header%>
11 |
12 |
15 |
16 | <%-blocks.footer%>
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/example/views/extra.ejs:
--------------------------------------------------------------------------------
1 | It's not often we iterate over the Muppets twice, but in this case it seems prudent to try from 'extras.ejs':
2 |
3 | <%-partial('muppet',muppets) %>
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/example/views/index.ejs:
--------------------------------------------------------------------------------
1 | <% layout('boilerplate') -%>
2 | <% script('foo.js') -%>
3 | <% stylesheet('foo.css') -%>
4 | I am the <%=what%> template
5 | I'm red if foo.css was loaded.
6 | Here are some muppets we know about:
7 | <%-partial('muppet',muppets) %>
8 |
9 | <% include extra %>
10 | <% block('header', "I'm in the header.
") -%>
11 | <% block('footer', "I'm in the footer.
") -%>
12 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/example/views/muppet.ejs:
--------------------------------------------------------------------------------
1 | <%=muppet%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/.gitmodules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/ejs-locals/node_modules/ejs/.gitmodules
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/.npmignore:
--------------------------------------------------------------------------------
1 | # ignore any vim files:
2 | *.sw[a-z]
3 | vim/.netrwhist
4 | node_modules
5 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.11
4 | - 0.10
5 | - 0.9
6 | - 0.6
7 | - 0.8
8 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/Makefile:
--------------------------------------------------------------------------------
1 |
2 | SRC = $(shell find lib -name "*.js" -type f)
3 | UGLIFY_FLAGS = --no-mangle
4 |
5 | all: ejs.min.js
6 |
7 | test:
8 | @./node_modules/.bin/mocha \
9 | --reporter spec
10 |
11 | ejs.js: $(SRC)
12 | @node support/compile.js $^
13 |
14 | ejs.min.js: ejs.js
15 | @uglifyjs $(UGLIFY_FLAGS) $< > $@ \
16 | && du ejs.min.js \
17 | && du ejs.js
18 |
19 | clean:
20 | rm -f ejs.js
21 | rm -f ejs.min.js
22 |
23 | .PHONY: test
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/benchmark.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | var ejs = require('./lib/ejs'),
4 | str = '<% if (foo) { %><%= foo %>
<% } %>',
5 | times = 50000;
6 |
7 | console.log('rendering ' + times + ' times');
8 |
9 | var start = new Date;
10 | while (times--) {
11 | ejs.render(str, { cache: true, filename: 'test', locals: { foo: 'bar' }});
12 | }
13 |
14 | console.log('took ' + (new Date - start) + 'ms');
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/examples/functions.ejs:
--------------------------------------------------------------------------------
1 | Users
2 |
3 | <% function user(user) { %>
4 | <%= user.name %> is a <%= user.age %> year old <%= user.species %>.
5 | <% } %>
6 |
7 |
8 | <% users.map(user) %>
9 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/examples/list.ejs:
--------------------------------------------------------------------------------
1 | <% if (names.length) { %>
2 |
3 | <% names.forEach(function(name){ %>
4 | '><%= name %>
5 | <% }) %>
6 |
7 | <% } %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/examples/list.js:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * Module dependencies.
4 | */
5 |
6 | var ejs = require('../')
7 | , fs = require('fs')
8 | , str = fs.readFileSync(__dirname + '/list.ejs', 'utf8');
9 |
10 | var ret = ejs.render(str, {
11 | names: ['foo', 'bar', 'baz']
12 | });
13 |
14 | console.log(ret);
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/index.js:
--------------------------------------------------------------------------------
1 |
2 | module.exports = require('./lib/ejs');
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/backslash.ejs:
--------------------------------------------------------------------------------
1 | \foo
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/backslash.html:
--------------------------------------------------------------------------------
1 | \foo
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/comments.ejs:
--------------------------------------------------------------------------------
1 | <% // double-slash comment %>foo
2 | <% /* C-style comment */ %>bar
3 | <% // double-slash comment with newline
4 | %>baz
5 | <% var x = 'qux'; // double-slash comment @ end of line %><%= x %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/comments.html:
--------------------------------------------------------------------------------
1 | foo
2 | bar
3 | baz
4 | qux
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/double-quote.ejs:
--------------------------------------------------------------------------------
1 | <%= "lo" + 'ki' %>'s "wheelchair"
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/double-quote.html:
--------------------------------------------------------------------------------
1 | loki's "wheelchair"
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/error.ejs:
--------------------------------------------------------------------------------
1 |
2 | <% if (users) { %>
3 | Has users
4 | <% } %>
5 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/error.out:
--------------------------------------------------------------------------------
1 | ReferenceError: error.ejs:2
2 | 1|
3 | >> 2| <% if (users) { %>
4 | 3| Has users
5 | 4| <% } %>
6 | 5|
7 |
8 | users is not defined
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/fail.ejs:
--------------------------------------------------------------------------------
1 | <% function foo() return 'foo'; %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/include.css.ejs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/include.css.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/include.ejs:
--------------------------------------------------------------------------------
1 |
2 | [[ pets.forEach(function(pet){ ]]
3 | [[ include pet ]]
4 | [[ }) ]]
5 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/include.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | tobi
4 |
5 | loki
6 |
7 | jane
8 |
9 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/includes/menu-item.ejs:
--------------------------------------------------------------------------------
1 | <% include menu/item %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/includes/menu/item.ejs:
--------------------------------------------------------------------------------
1 | <%= title %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/menu.ejs:
--------------------------------------------------------------------------------
1 | <% var url = '/foo' -%>
2 | <% var title = 'Foo' -%>
3 | <% include includes/menu-item -%>
4 |
5 | <% var url = '/bar' -%>
6 | <% var title = 'Bar' -%>
7 | <% include includes/menu-item -%>
8 |
9 | <% var url = '/baz' -%>
10 | <% var title = 'Baz' -%>
11 | <% include includes/menu-item -%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/menu.html:
--------------------------------------------------------------------------------
1 | Foo
2 | Bar
3 | Baz
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/messed.ejs:
--------------------------------------------------------------------------------
1 | <%users.forEach(function(user){%><%=user.name%> <%})%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/messed.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/newlines.ejs:
--------------------------------------------------------------------------------
1 |
2 | <% users.forEach(function(user){ %>
3 | <%= user.name %>
4 | <% }) %>
5 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/newlines.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | tobi
4 |
5 | loki
6 |
7 | jane
8 |
9 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/no.newlines.ejs:
--------------------------------------------------------------------------------
1 |
2 | <% users.forEach(function(user){ -%>
3 | <%= user.name %>
4 | <% }) -%>
5 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/no.newlines.html:
--------------------------------------------------------------------------------
1 |
2 | tobi
3 | loki
4 | jane
5 |
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/para.ejs:
--------------------------------------------------------------------------------
1 | hey
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/pet.ejs:
--------------------------------------------------------------------------------
1 | [[= pet.name ]]
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/single-quote.ejs:
--------------------------------------------------------------------------------
1 | <%= 'loki' %>'s wheelchair
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/single-quote.html:
--------------------------------------------------------------------------------
1 | loki's wheelchair
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/style.css:
--------------------------------------------------------------------------------
1 | body {
2 | foo: '<%= value %>';
3 | }
--------------------------------------------------------------------------------
/node_modules/ejs-locals/node_modules/ejs/test/fixtures/user.ejs:
--------------------------------------------------------------------------------
1 | {= name}
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/_entry.ejs:
--------------------------------------------------------------------------------
1 | <%= entry.name %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/blocks-layout.ejs:
--------------------------------------------------------------------------------
1 | <%-block('sidebar')%><%-body%><%-block('footer')%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/blog/home.ejs:
--------------------------------------------------------------------------------
1 | <%-partial('user',user)%> <%-partial('post',posts)%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/blog/post/comment.ejs:
--------------------------------------------------------------------------------
1 | <%=comment.text%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/blog/post/index.ejs:
--------------------------------------------------------------------------------
1 | <%=post.text%><%-partial('comment',post.comments)%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/blog/user.ejs:
--------------------------------------------------------------------------------
1 | <%=user.name%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/collection.ejs:
--------------------------------------------------------------------------------
1 | <%- partial(name,list) %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/filters-custom.ejs:
--------------------------------------------------------------------------------
1 | <%=: hello | upcase %> <%=: hello | embrace %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/filters.ejs:
--------------------------------------------------------------------------------
1 | <%=: hello | upcase %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/include-chain-2.ejs:
--------------------------------------------------------------------------------
1 | <%= hello %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/include-chain.ejs:
--------------------------------------------------------------------------------
1 | <% include include-chain-2 %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/index.ejs:
--------------------------------------------------------------------------------
1 | Index
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/inherit-child-blocks.ejs:
--------------------------------------------------------------------------------
1 | <%layout('inherit-parent-blocks')%><%- body %>I am child content. <%script('c.js')%><%stylesheet('c.css')%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/inherit-child.ejs:
--------------------------------------------------------------------------------
1 | <%layout('inherit-parent')%><%- body %>I am child content.
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/inherit-grandchild-blocks.ejs:
--------------------------------------------------------------------------------
1 | <%layout('inherit-child-blocks')%>I am grandchild content. <%script('gc.js')%><%stylesheet('gc.css')%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/inherit-grandchild.ejs:
--------------------------------------------------------------------------------
1 | <%layout('inherit-child')%>I am grandchild content.
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/inherit-parent-blocks.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals <%-scripts%><%-stylesheets%><%- body %>I am parent content.
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/inherit-parent.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals <%- body %>I am parent content.
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/layout.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals <%- body %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/locals.ejs:
--------------------------------------------------------------------------------
1 | <%= hello %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/mobile.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals mobile <%- body %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/non-existent-partial.ejs:
--------------------------------------------------------------------------------
1 | <%-partial('non-existent')%>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/parent-include-chain.ejs:
--------------------------------------------------------------------------------
1 | <%= hello %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/path/to/thing.ejs:
--------------------------------------------------------------------------------
1 | <%= thing.name %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/subfolder/sub-include-chain.ejs:
--------------------------------------------------------------------------------
1 | <% include ../parent-include-chain %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/subfolder/sub-layout.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals sub-layout <%- body %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/subfolder/subitem-with-layout.ejs:
--------------------------------------------------------------------------------
1 | <% layout('sub-layout') %>Index
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/subfolder/subitem.ejs:
--------------------------------------------------------------------------------
1 | Index
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/subfolder/sublocals.ejs:
--------------------------------------------------------------------------------
1 | <% include subitem %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/thing/index.ejs:
--------------------------------------------------------------------------------
1 | <%= thing.name %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/with-absolute-include.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals-abs <% include /locals %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/with-absolute-sub-include.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals-abs-sub <% include /subfolder/sublocals %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/with-blocks.ejs:
--------------------------------------------------------------------------------
1 | <% block('footer', '© 2012') %><% layout('blocks-layout') %>What's up?
<% block('sidebar', ''+hello+' ') %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/with-include-chain-subfolder.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals-include-sub <% include subfolder/sub-include-chain %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/with-include-chain.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals-include <% include include-chain %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/with-include.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals <% include locals %>
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/with-layout.ejs:
--------------------------------------------------------------------------------
1 | <%layout('layout')%>Index
--------------------------------------------------------------------------------
/node_modules/ejs-locals/test/fixtures/with-two-includes.ejs:
--------------------------------------------------------------------------------
1 | ejs-locals-two-includes <% include locals %><% include subfolder/sublocals %>
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/backslash.ejs:
--------------------------------------------------------------------------------
1 | \foo
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/backslash.html:
--------------------------------------------------------------------------------
1 | \foo
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/comments.ejs:
--------------------------------------------------------------------------------
1 | <% // double-slash comment %>foo
2 | <% /* C-style comment */ %>bar
3 | <% // double-slash comment with newline
4 | %>baz
5 | <% var x = 'qux'; // double-slash comment @ end of line %><%= x %>
6 | <%# ERB style comment %>fee
7 | <%= 'not a ' + '//' + ' comment' %>
8 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/comments.html:
--------------------------------------------------------------------------------
1 | foo
2 | bar
3 | baz
4 | qux
5 | fee
6 | not a // comment
7 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/consecutive-tags.ejs:
--------------------------------------------------------------------------------
1 | <% var a = 'foo' %><% var b = 'bar' %><%= a %>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/consecutive-tags.html:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/double-quote.ejs:
--------------------------------------------------------------------------------
1 | <%= "lo" + 'ki' %>'s "wheelchair"
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/double-quote.html:
--------------------------------------------------------------------------------
1 | loki's "wheelchair"
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/error.ejs:
--------------------------------------------------------------------------------
1 |
2 | <% if (users) { %>
3 | Has users
4 | <% } %>
5 |
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/error.out:
--------------------------------------------------------------------------------
1 | ReferenceError: error.ejs:2
2 | 1|
3 | >> 2| <% if (users) { %>
4 | 3| Has users
5 | 4| <% } %>
6 | 5|
7 |
8 | users is not defined
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/fail.ejs:
--------------------------------------------------------------------------------
1 | <% function foo() return 'foo'; %>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/hello-world.ejs:
--------------------------------------------------------------------------------
1 | Hello world!
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include-abspath.ejs:
--------------------------------------------------------------------------------
1 |
2 | <@ pets.forEach(function(pet){ @>
3 | <@- include(path.join(dir, 'pet'), {pet: pet}); @>
4 | <@ }); @>
5 |
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include-root.ejs:
--------------------------------------------------------------------------------
1 | <@- include('/include'); @>
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include-simple.ejs:
--------------------------------------------------------------------------------
1 |
2 | <%- include('hello-world'); %>
3 |
4 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include-simple.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include.css.ejs:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include.css.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include.ejs:
--------------------------------------------------------------------------------
1 |
2 | <@ pets.forEach(function(pet){ @>
3 | <@- include('pet', {pet: pet}); @>
4 | <@ }); @>
5 |
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | geddy
4 |
5 |
6 | neil
7 |
8 |
9 | alex
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_cache.ejs:
--------------------------------------------------------------------------------
1 | <%- include('../tmp/include') %>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_cache.html:
--------------------------------------------------------------------------------
1 | Old
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_preprocessor.css.ejs:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_preprocessor.css.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_preprocessor.ejs:
--------------------------------------------------------------------------------
1 |
2 | <@ pets.forEach(function(pet){ @>
3 | <@ include pet @>
4 | <@ }) @>
5 |
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_preprocessor.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | geddy
4 |
5 |
6 | neil
7 |
8 |
9 | alex
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_preprocessor_cache.ejs:
--------------------------------------------------------------------------------
1 | <%- include ../tmp/include_preprocessor %>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_preprocessor_cache.html:
--------------------------------------------------------------------------------
1 | Old
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.ejs:
--------------------------------------------------------------------------------
1 | <% include include_preprocessor_line_slurp_child %>
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.html:
--------------------------------------------------------------------------------
1 |
2 | 12
3 | 3
4 | 45
5 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp_child.ejs:
--------------------------------------------------------------------------------
1 |
2 | 1 <%_ if (true) { _%> 2
3 | 3
4 | 4 <%_ } _%> 5
5 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/includes/bom.ejs:
--------------------------------------------------------------------------------
1 | This is a file with BOM.
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/includes/menu-item.ejs:
--------------------------------------------------------------------------------
1 | <% include menu/item %>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/includes/menu/item.ejs:
--------------------------------------------------------------------------------
1 | <%= title %>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/literal.ejs:
--------------------------------------------------------------------------------
1 | There should be a space followed by a less-than sign and then two more
2 | spaces in the next line:
3 | < .
4 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/literal.html:
--------------------------------------------------------------------------------
1 | There should be a space followed by a less-than sign and then two more
2 | spaces in the next line:
3 | < .
4 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/menu.ejs:
--------------------------------------------------------------------------------
1 | <%- include('includes/menu-item', {
2 | url: '/foo'
3 | , title: 'Foo'
4 | }); -%>
5 |
6 | <%- include('includes/menu-item', {
7 | url: '/bar'
8 | , title: 'Bar'
9 | }); -%>
10 |
11 | <%- include('includes/menu-item', {
12 | url: '/baz'
13 | , title: 'Baz'
14 | }); -%>
15 |
16 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/menu.html:
--------------------------------------------------------------------------------
1 | Foo
2 |
3 |
4 | Bar
5 |
6 |
7 | Baz
8 |
9 |
10 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/menu_preprocessor.ejs:
--------------------------------------------------------------------------------
1 | <% var url = '/foo' -%>
2 | <% var title = 'Foo' -%>
3 | <% include includes/menu-item -%>
4 |
5 | <% var url = '/bar' -%>
6 | <% var title = 'Bar' -%>
7 | <% include includes/menu-item -%>
8 |
9 | <% var url = '/baz' -%>
10 | <% var title = 'Baz' -%>
11 | <% include includes/menu-item -%>
12 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/menu_preprocessor.html:
--------------------------------------------------------------------------------
1 | Foo
2 |
3 |
4 | Bar
5 |
6 |
7 | Baz
8 |
9 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/menu_var.ejs:
--------------------------------------------------------------------------------
1 | <%- include(varPath, {
2 | url: '/foo'
3 | , title: 'Foo'
4 | }); -%>
5 |
6 | <%- include(varPath, {
7 | url: '/bar'
8 | , title: 'Bar'
9 | }); -%>
10 |
11 | <%- include(varPath, {
12 | url: '/baz'
13 | , title: 'Baz'
14 | }); -%>
15 |
16 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/messed.ejs:
--------------------------------------------------------------------------------
1 | <%users.forEach(function(user){%><%=user.name%> <%})%>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/messed.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/newlines.ejs:
--------------------------------------------------------------------------------
1 |
2 | <% users.forEach(function(user){ %>
3 | <%= user.name %>
4 | <% }) %>
5 |
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/newlines.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | geddy
4 |
5 | neil
6 |
7 | alex
8 |
9 |
10 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/newlines.mixed.ejs:
--------------------------------------------------------------------------------
1 |
2 | <% var unused1 = 'blah' -%>
3 | <% var unused2 = 'bleh' %>
4 | <% var unused3 = 'bloh' -%>
5 | <% var unused4 = 'bluh' %>
6 |
7 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/newlines.mixed.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/no.newlines.ejs:
--------------------------------------------------------------------------------
1 |
2 | <% users.forEach(function(user){ -%>
3 | <%= user.name %>
4 | <% }) -%>
5 |
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/no.newlines.error.ejs:
--------------------------------------------------------------------------------
1 | AAA
2 | <% var data = "test"; -%>
3 | BBB
4 | <%= qdata %>
5 | CCC
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/no.newlines.html:
--------------------------------------------------------------------------------
1 |
2 | geddy
3 | neil
4 | alex
5 |
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/no.semicolons.ejs:
--------------------------------------------------------------------------------
1 | This document does not use semicolons in scriptlets.
2 | <%
3 | var a = 'b'
4 | var b = 'c'
5 | var c
6 | c = b
7 | %>
8 | The value of c is: <%= c %>
9 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/no.semicolons.html:
--------------------------------------------------------------------------------
1 | This document does not use semicolons in scriptlets.
2 |
3 | The value of c is: c
4 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/para.ejs:
--------------------------------------------------------------------------------
1 | hey
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/pet.ejs:
--------------------------------------------------------------------------------
1 | <@= pet.name @>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/rmWhitespace.ejs:
--------------------------------------------------------------------------------
1 |
2 |
3 | A very long piece of text very long piece of text very long piece of
4 | text very long piece <% var f = 'f' %>of text very long piece of
5 | tex
t very long piece of<% %>text very long
6 | adsffadsfadsfad<%= f %>
7 |
8 | piece of text.
9 | <% var a = 'a' %>
10 | Text again.
11 | <% var b = 'b' %>
12 | <% var c = 'c'
13 | var d = 'd' %>
14 | Another text. <%= c %>
15 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/rmWhitespace.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | A very long piece of text very long piece of text very long piece of
4 | text very long piece of text very long piece of
5 | text very long piece oftext very long
6 | adsffadsfadsfadfpiece of text.
7 | Text again.
8 | Another text. c
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/single-quote.ejs:
--------------------------------------------------------------------------------
1 | <%= 'loki' %>'s wheelchair
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/single-quote.html:
--------------------------------------------------------------------------------
1 | loki's wheelchair
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/space-and-tab-slurp.ejs:
--------------------------------------------------------------------------------
1 |
2 | <%_ users.forEach(function(user){ _%>
3 | <%= user.name %>
4 | <%_ }) _%>
5 |
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/space-and-tab-slurp.html:
--------------------------------------------------------------------------------
1 |
2 | geddy
3 | neil
4 | alex
5 |
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/strict.ejs:
--------------------------------------------------------------------------------
1 | <%
2 | // Unspecified execution context should be `undefined` in strict mode
3 | var isReallyStrict = !((function () { return this; })())
4 | -%>
5 | <%= isReallyStrict -%>
6 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/style.css:
--------------------------------------------------------------------------------
1 | body {
2 | foo: '<%= value %>';
3 | }
4 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/user-no-with.ejs:
--------------------------------------------------------------------------------
1 | <$= locals.name $>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/user.ejs:
--------------------------------------------------------------------------------
1 | <$= name $>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/fixtures/with-context.ejs:
--------------------------------------------------------------------------------
1 | <%= this.foo %>
2 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/mocha.opts:
--------------------------------------------------------------------------------
1 | --ui tdd
2 | --reporter spec
3 | --check-leaks
4 |
--------------------------------------------------------------------------------
/node_modules/ejs/test/tmp/include.ejs:
--------------------------------------------------------------------------------
1 | New
--------------------------------------------------------------------------------
/node_modules/ejs/test/tmp/include_preprocessor.ejs:
--------------------------------------------------------------------------------
1 | New
--------------------------------------------------------------------------------
/node_modules/ejs/test/tmp/renderFile.ejs:
--------------------------------------------------------------------------------
1 | New
--------------------------------------------------------------------------------
/node_modules/express-session/node_modules/cookie-signature/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 | *.sock
5 |
--------------------------------------------------------------------------------
/node_modules/express-session/node_modules/debug/.coveralls.yml:
--------------------------------------------------------------------------------
1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve
2 |
--------------------------------------------------------------------------------
/node_modules/express-session/node_modules/debug/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "node": true
5 | },
6 | "rules": {
7 | "no-console": 0,
8 | "no-empty": [1, { "allowEmptyCatch": true }]
9 | },
10 | "extends": "eslint:recommended"
11 | }
12 |
--------------------------------------------------------------------------------
/node_modules/express-session/node_modules/debug/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 | example
5 | *.sock
6 | dist
7 | yarn.lock
8 | coverage
9 |
--------------------------------------------------------------------------------
/node_modules/express-session/node_modules/debug/.travis.yml:
--------------------------------------------------------------------------------
1 |
2 | language: node_js
3 | node_js:
4 | - "6"
5 | - "5"
6 | - "4"
7 |
8 | install:
9 | - make node_modules
10 |
11 | script:
12 | - make lint
13 | - make test
14 | - make coveralls
15 |
--------------------------------------------------------------------------------
/node_modules/express-session/node_modules/debug/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "debug",
3 | "repo": "visionmedia/debug",
4 | "description": "small debugging utility",
5 | "version": "2.6.3",
6 | "keywords": [
7 | "debug",
8 | "log",
9 | "debugger"
10 | ],
11 | "main": "src/browser.js",
12 | "scripts": [
13 | "src/browser.js",
14 | "src/debug.js"
15 | ],
16 | "dependencies": {
17 | "rauchg/ms.js": "0.7.1"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/node_modules/express-session/node_modules/debug/node.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./src/node');
2 |
--------------------------------------------------------------------------------
/node_modules/express-session/node_modules/debug/src/index.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Detect Electron renderer process, which is node, but we should
3 | * treat as a browser.
4 | */
5 |
6 | if (typeof process !== 'undefined' && process.type === 'renderer') {
7 | module.exports = require('./browser.js');
8 | } else {
9 | module.exports = require('./node.js');
10 | }
11 |
--------------------------------------------------------------------------------
/node_modules/express/.npmignore:
--------------------------------------------------------------------------------
1 | .git*
2 | docs/
3 | examples/
4 | support/
5 | test/
6 | testing.js
7 | .DS_Store
8 | coverage.html
9 | lib-cov
10 |
--------------------------------------------------------------------------------
/node_modules/express/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/node_modules/express/index.js:
--------------------------------------------------------------------------------
1 |
2 | module.exports = process.env.EXPRESS_COV
3 | ? require('./lib-cov/express')
4 | : require('./lib/express');
--------------------------------------------------------------------------------
/node_modules/express/test.js:
--------------------------------------------------------------------------------
1 | var express = require('express');
2 | var http = require('http');
3 |
4 | var app = express();
5 |
6 | var n = 50;
7 |
8 | while (n--) {
9 | app.use(function(req, res, next){
10 | next();
11 | });
12 | }
13 |
14 | http.createServer(app).listen(3000);
15 |
--------------------------------------------------------------------------------
/node_modules/formidable/.npmignore:
--------------------------------------------------------------------------------
1 | /test/tmp/
2 | *.upload
3 | *.un~
4 | *.http
5 |
--------------------------------------------------------------------------------
/node_modules/formidable/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.8
4 | - 0.9
5 | - "0.10"
6 |
--------------------------------------------------------------------------------
/node_modules/formidable/index.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./lib');
--------------------------------------------------------------------------------
/node_modules/formidable/lib/index.js:
--------------------------------------------------------------------------------
1 | var IncomingForm = require('./incoming_form').IncomingForm;
2 | IncomingForm.IncomingForm = IncomingForm;
3 | module.exports = IncomingForm;
4 |
--------------------------------------------------------------------------------
/node_modules/formidable/test/common.js:
--------------------------------------------------------------------------------
1 | var path = require('path');
2 |
3 | var root = path.join(__dirname, '../');
4 | exports.dir = {
5 | root : root,
6 | lib : root + '/lib',
7 | fixture : root + '/test/fixture',
8 | tmp : root + '/test/tmp',
9 | };
10 |
11 | exports.port = 13532;
12 |
13 | exports.formidable = require('..');
14 | exports.assert = require('assert');
15 |
16 | exports.require = function(lib) {
17 | return require(exports.dir.lib + '/' + lib);
18 | };
19 |
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/file/beta-sticker-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/formidable/test/fixture/file/beta-sticker-1.png
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/file/binaryfile.tar.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/formidable/test/fixture/file/binaryfile.tar.gz
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/file/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/formidable/test/fixture/file/blank.gif
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/file/funkyfilename.txt:
--------------------------------------------------------------------------------
1 | I am a text file with a funky name!
2 |
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/file/menu_separator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/formidable/test/fixture/file/menu_separator.png
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/file/plain.txt:
--------------------------------------------------------------------------------
1 | I am a plain text file
2 |
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/http/special-chars-in-filename/info.md:
--------------------------------------------------------------------------------
1 | * Opera does not allow submitting this file, it shows a warning to the
2 | user that the file could not be found instead. Tested in 9.8, 11.51 on OSX.
3 | Reported to Opera on 08.09.2011 (tracking email DSK-346009@bugs.opera.com).
4 |
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/js/misc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | 'empty.http': [],
3 | 'empty-urlencoded.http': [],
4 | 'empty-multipart.http': [],
5 | 'minimal.http': [],
6 | };
7 |
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/js/no-filename.js:
--------------------------------------------------------------------------------
1 | module.exports['generic.http'] = [
2 | {type: 'file', name: 'upload', filename: '', fixture: 'plain.txt',
3 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'},
4 | ];
5 |
6 | module.exports['filename-name.http'] = [
7 | {type: 'file', name: 'upload', filename: 'plain.txt', fixture: 'plain.txt',
8 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'},
9 | ];
10 |
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/js/preamble.js:
--------------------------------------------------------------------------------
1 | module.exports['crlf.http'] = [
2 | {type: 'file', name: 'upload', filename: 'plain.txt', fixture: 'plain.txt',
3 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'},
4 | ];
5 |
6 | module.exports['preamble.http'] = [
7 | {type: 'file', name: 'upload', filename: 'plain.txt', fixture: 'plain.txt',
8 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'},
9 | ];
10 |
--------------------------------------------------------------------------------
/node_modules/formidable/test/fixture/js/workarounds.js:
--------------------------------------------------------------------------------
1 | module.exports['missing-hyphens1.http'] = [
2 | {type: 'file', name: 'upload', filename: 'plain.txt', fixture: 'plain.txt',
3 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'},
4 | ];
5 | module.exports['missing-hyphens2.http'] = [
6 | {type: 'file', name: 'upload', filename: 'plain.txt', fixture: 'plain.txt',
7 | sha1: 'b31d07bac24ac32734de88b3687dddb10e976872'},
8 | ];
9 |
--------------------------------------------------------------------------------
/node_modules/formidable/test/run.js:
--------------------------------------------------------------------------------
1 | require('urun')(__dirname)
2 |
--------------------------------------------------------------------------------
/node_modules/fresh/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/node_modules/fresh/History.md:
--------------------------------------------------------------------------------
1 |
2 | 0.2.0 / 2013-08-11
3 | ==================
4 |
5 | * fix: return false for no-cache
6 |
--------------------------------------------------------------------------------
/node_modules/fresh/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @./node_modules/.bin/mocha \
4 | --reporter spec \
5 | --require should
6 |
7 | .PHONY: test
--------------------------------------------------------------------------------
/node_modules/hooks/.npmignore:
--------------------------------------------------------------------------------
1 | **.swp
2 | node_modules
3 |
--------------------------------------------------------------------------------
/node_modules/hooks/Makefile:
--------------------------------------------------------------------------------
1 | test:
2 | @NODE_ENV=test ./node_modules/expresso/bin/expresso \
3 | $(TESTFLAGS) \
4 | ./test.js
5 |
6 | test-cov:
7 | @TESTFLAGS=--cov $(MAKE) test
8 |
9 | .PHONY: test test-cov
10 |
--------------------------------------------------------------------------------
/node_modules/iconv-lite/.npmignore:
--------------------------------------------------------------------------------
1 | *~
2 | *sublime-*
3 | generation
4 | test
5 | wiki
6 | coverage
7 |
--------------------------------------------------------------------------------
/node_modules/iconv-lite/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: node_js
3 | node_js:
4 | - "0.10"
5 | - "0.11"
6 | - "0.12"
7 | - "iojs"
8 | - "4"
9 | - "6"
10 | - "node"
11 |
12 |
13 | env:
14 | - CXX=g++-4.8
15 | addons:
16 | apt:
17 | sources:
18 | - ubuntu-toolchain-r-test
19 | packages:
20 | - gcc-4.8
21 | - g++-4.8
22 |
23 |
--------------------------------------------------------------------------------
/node_modules/inherits/inherits.js:
--------------------------------------------------------------------------------
1 | try {
2 | var util = require('util');
3 | if (typeof util.inherits !== 'function') throw '';
4 | module.exports = util.inherits;
5 | } catch (e) {
6 | module.exports = require('./inherits_browser.js');
7 | }
8 |
--------------------------------------------------------------------------------
/node_modules/isarray/index.js:
--------------------------------------------------------------------------------
1 | module.exports = Array.isArray || function (arr) {
2 | return Object.prototype.toString.call(arr) == '[object Array]';
3 | };
4 |
--------------------------------------------------------------------------------
/node_modules/kerberos/README.md:
--------------------------------------------------------------------------------
1 | kerberos
2 | ========
3 |
4 | Kerberos library for node.js
--------------------------------------------------------------------------------
/node_modules/kerberos/build/Release/obj/kerberos/kerberos.tlog/CL.command.1.tlog:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/kerberos/build/Release/obj/kerberos/kerberos.tlog/CL.command.1.tlog
--------------------------------------------------------------------------------
/node_modules/kerberos/build/Release/obj/kerberos/kerberos.tlog/CL.read.1.tlog:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/kerberos/build/Release/obj/kerberos/kerberos.tlog/CL.read.1.tlog
--------------------------------------------------------------------------------
/node_modules/kerberos/build/Release/obj/kerberos/kerberos.tlog/CL.write.1.tlog:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/kerberos/build/Release/obj/kerberos/kerberos.tlog/CL.write.1.tlog
--------------------------------------------------------------------------------
/node_modules/kerberos/build/Release/obj/kerberos/kerberos.tlog/kerberos.lastbuildstate:
--------------------------------------------------------------------------------
1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native64Bit:WindowsTargetPlatformVersion=8.1
2 | Release|x64|D:\DTU_related\3rd YEAR\SIXTH SEM\WT project\nodejscourse\node_modules\kerberos\build\|
3 |
--------------------------------------------------------------------------------
/node_modules/kerberos/build/Release/obj/kerberos/kerberos.tlog/unsuccessfulbuild:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/kerberos/build/Release/obj/kerberos/kerberos.tlog/unsuccessfulbuild
--------------------------------------------------------------------------------
/node_modules/kerberos/build/Release/obj/kerberos/vc140.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/kerberos/build/Release/obj/kerberos/vc140.pdb
--------------------------------------------------------------------------------
/node_modules/kerberos/build/Release/obj/kerberos/win_delay_load_hook.obj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/kerberos/build/Release/obj/kerberos/win_delay_load_hook.obj
--------------------------------------------------------------------------------
/node_modules/kerberos/index.js:
--------------------------------------------------------------------------------
1 | // Get the Kerberos library
2 | module.exports = require('./lib/kerberos');
3 | // Set up the auth processes
4 | module.exports['processes'] = {
5 | MongoAuthProcess: require('./lib/auth_processes/mongodb').MongoAuthProcess
6 | }
--------------------------------------------------------------------------------
/node_modules/kerberos/lib/win32/worker.cc:
--------------------------------------------------------------------------------
1 | #include "worker.h"
2 |
3 | Worker::Worker() {
4 | }
5 |
6 | Worker::~Worker() {
7 | }
--------------------------------------------------------------------------------
/node_modules/kerberos/lib/win32/wrappers/security_buffer.js:
--------------------------------------------------------------------------------
1 | var SecurityBufferNative = require('../../../build/Release/kerberos').SecurityBuffer;
2 |
3 | // Add some attributes
4 | SecurityBufferNative.VERSION = 0;
5 | SecurityBufferNative.EMPTY = 0;
6 | SecurityBufferNative.DATA = 1;
7 | SecurityBufferNative.TOKEN = 2;
8 | SecurityBufferNative.PADDING = 9;
9 | SecurityBufferNative.STREAM = 10;
10 |
11 | // Export the modified class
12 | exports.SecurityBuffer = SecurityBufferNative;
--------------------------------------------------------------------------------
/node_modules/kerberos/lib/win32/wrappers/security_buffer_descriptor.js:
--------------------------------------------------------------------------------
1 | var SecurityBufferDescriptorNative = require('../../../build/Release/kerberos').SecurityBufferDescriptor;
2 | // Export the modified class
3 | exports.SecurityBufferDescriptor = SecurityBufferDescriptorNative;
--------------------------------------------------------------------------------
/node_modules/kerberos/lib/win32/wrappers/security_context.js:
--------------------------------------------------------------------------------
1 | var SecurityContextNative = require('../../../build/Release/kerberos').SecurityContext;
2 | // Export the modified class
3 | exports.SecurityContext = SecurityContextNative;
--------------------------------------------------------------------------------
/node_modules/kerberos/lib/worker.cc:
--------------------------------------------------------------------------------
1 | #include "worker.h"
2 |
3 | Worker::Worker() {
4 | }
5 |
6 | Worker::~Worker() {
7 | }
--------------------------------------------------------------------------------
/node_modules/methods/index.js:
--------------------------------------------------------------------------------
1 |
2 | module.exports = [
3 | 'get'
4 | , 'post'
5 | , 'put'
6 | , 'head'
7 | , 'delete'
8 | , 'options'
9 | , 'trace'
10 | , 'copy'
11 | , 'lock'
12 | , 'mkcol'
13 | , 'move'
14 | , 'propfind'
15 | , 'proppatch'
16 | , 'unlock'
17 | , 'report'
18 | , 'mkactivity'
19 | , 'checkout'
20 | , 'merge'
21 | , 'm-search'
22 | , 'notify'
23 | , 'subscribe'
24 | , 'unsubscribe'
25 | , 'patch'
26 | ];
--------------------------------------------------------------------------------
/node_modules/mime-db/index.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * mime-db
3 | * Copyright(c) 2014 Jonathan Ong
4 | * MIT Licensed
5 | */
6 |
7 | /**
8 | * Module exports.
9 | */
10 |
11 | module.exports = require('./db.json')
12 |
--------------------------------------------------------------------------------
/node_modules/minimist/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/node_modules/minimist/example/parse.js:
--------------------------------------------------------------------------------
1 | var argv = require('../')(process.argv.slice(2));
2 | console.dir(argv);
3 |
--------------------------------------------------------------------------------
/node_modules/minimist/test/parse_modified.js:
--------------------------------------------------------------------------------
1 | var parse = require('../');
2 | var test = require('tape');
3 |
4 | test('parse with modifier functions' , function (t) {
5 | t.plan(1);
6 |
7 | var argv = parse([ '-b', '123' ], { boolean: 'b' });
8 | t.deepEqual(argv, { b: true, _: ['123'] });
9 | });
10 |
--------------------------------------------------------------------------------
/node_modules/minimist/test/whitespace.js:
--------------------------------------------------------------------------------
1 | var parse = require('../');
2 | var test = require('tape');
3 |
4 | test('whitespace should be whitespace' , function (t) {
5 | t.plan(1);
6 | var x = parse([ '-x', '\t' ]).x;
7 | t.equal(x, '\t');
8 | });
9 |
--------------------------------------------------------------------------------
/node_modules/mkdirp/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | npm-debug.log
--------------------------------------------------------------------------------
/node_modules/mkdirp/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 | - 0.9
6 |
--------------------------------------------------------------------------------
/node_modules/mkdirp/examples/pow.js:
--------------------------------------------------------------------------------
1 | var mkdirp = require('mkdirp');
2 |
3 | mkdirp('/tmp/foo/bar/baz', function (err) {
4 | if (err) console.error(err)
5 | else console.log('pow!')
6 | });
7 |
--------------------------------------------------------------------------------
/node_modules/mongodb/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 | - 0.10 # development version of 0.8, may be unstable
--------------------------------------------------------------------------------
/node_modules/mongodb/index.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./lib/mongodb');
2 |
--------------------------------------------------------------------------------
/node_modules/mongoose/.npmignore:
--------------------------------------------------------------------------------
1 | lib-cov
2 | **.swp
3 | *.sw*
4 | *.orig
5 | .DS_Store
6 | node_modules/
7 | benchmarks/
8 | docs/
9 | test/
10 | Makefile
11 | CNAME
12 | index.html
13 | index.jade
14 |
--------------------------------------------------------------------------------
/node_modules/mongoose/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 | - 0.10
6 | services:
7 | - mongodb
8 |
--------------------------------------------------------------------------------
/node_modules/mongoose/index.js:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * Export lib/mongoose
4 | *
5 | */
6 |
7 | module.exports = require('./lib/');
8 |
--------------------------------------------------------------------------------
/node_modules/mongoose/lib/drivers/SPEC.md:
--------------------------------------------------------------------------------
1 |
2 | # Driver Spec
3 |
4 | TODO
5 |
--------------------------------------------------------------------------------
/node_modules/mongoose/lib/drivers/node-mongodb-native/binary.js:
--------------------------------------------------------------------------------
1 |
2 | /*!
3 | * Module dependencies.
4 | */
5 |
6 | var Binary = require('mongodb').BSONPure.Binary;
7 |
8 | module.exports = exports = Binary;
9 |
--------------------------------------------------------------------------------
/node_modules/mongoose/lib/types/index.js:
--------------------------------------------------------------------------------
1 |
2 | /*!
3 | * Module exports.
4 | */
5 |
6 | exports.Array = require('./array');
7 | exports.Buffer = require('./buffer');
8 |
9 | exports.Document = // @deprecate
10 | exports.Embedded = require('./embedded');
11 |
12 | exports.DocumentArray = require('./documentarray');
13 | exports.ObjectId = require('./objectid');
14 |
--------------------------------------------------------------------------------
/node_modules/mongoose/node_modules/ms/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/node_modules/mongoose/node_modules/ms/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | ./node_modules/.bin/mocha test/test.js
4 |
5 | test-browser:
6 | ./node_modules/.bin/serve test/
7 |
8 | .PHONY: test
9 |
--------------------------------------------------------------------------------
/node_modules/morgan/node_modules/debug/.coveralls.yml:
--------------------------------------------------------------------------------
1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve
2 |
--------------------------------------------------------------------------------
/node_modules/morgan/node_modules/debug/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "node": true
5 | },
6 | "rules": {
7 | "no-console": 0,
8 | "no-empty": [1, { "allowEmptyCatch": true }]
9 | },
10 | "extends": "eslint:recommended"
11 | }
12 |
--------------------------------------------------------------------------------
/node_modules/morgan/node_modules/debug/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 | example
5 | *.sock
6 | dist
7 | yarn.lock
8 | coverage
9 |
--------------------------------------------------------------------------------
/node_modules/morgan/node_modules/debug/.travis.yml:
--------------------------------------------------------------------------------
1 |
2 | language: node_js
3 | node_js:
4 | - "6"
5 | - "5"
6 | - "4"
7 |
8 | install:
9 | - make node_modules
10 |
11 | script:
12 | - make lint
13 | - make test
14 | - make coveralls
15 |
--------------------------------------------------------------------------------
/node_modules/morgan/node_modules/debug/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "debug",
3 | "repo": "visionmedia/debug",
4 | "description": "small debugging utility",
5 | "version": "2.6.1",
6 | "keywords": [
7 | "debug",
8 | "log",
9 | "debugger"
10 | ],
11 | "main": "src/browser.js",
12 | "scripts": [
13 | "src/browser.js",
14 | "src/debug.js"
15 | ],
16 | "dependencies": {
17 | "rauchg/ms.js": "0.7.1"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/node_modules/morgan/node_modules/debug/node.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./src/node');
2 |
--------------------------------------------------------------------------------
/node_modules/morgan/node_modules/debug/src/index.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Detect Electron renderer process, which is node, but we should
3 | * treat as a browser.
4 | */
5 |
6 | if (typeof process !== 'undefined' && process.type === 'renderer') {
7 | module.exports = require('./browser.js');
8 | } else {
9 | module.exports = require('./node.js');
10 | }
11 |
--------------------------------------------------------------------------------
/node_modules/mpath/.npmignore:
--------------------------------------------------------------------------------
1 | *.sw*
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/node_modules/mpath/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 |
--------------------------------------------------------------------------------
/node_modules/mpath/History.md:
--------------------------------------------------------------------------------
1 |
2 | 0.1.1 / 2012-12-21
3 | ==================
4 |
5 | * added; map support
6 |
7 | 0.1.0 / 2012-12-13
8 | ==================
9 |
10 | * added; set('array.property', val, object) support
11 | * added; get('array.property', object) support
12 |
13 | 0.0.1 / 2012-11-03
14 | ==================
15 |
16 | * initial release
17 |
--------------------------------------------------------------------------------
/node_modules/mpath/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @node_modules/mocha/bin/mocha -A $(T)
4 |
5 | .PHONY: test
6 |
--------------------------------------------------------------------------------
/node_modules/mpath/index.js:
--------------------------------------------------------------------------------
1 | module.exports = exports = require('./lib');
2 |
--------------------------------------------------------------------------------
/node_modules/mpromise/.npmignore:
--------------------------------------------------------------------------------
1 | *.sw*
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/node_modules/mpromise/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 |
--------------------------------------------------------------------------------
/node_modules/mpromise/History.md:
--------------------------------------------------------------------------------
1 |
2 | 0.2.1 / 2013-02-09
3 | ==================
4 |
5 | * fixed; conformancy with A+ 1.2
6 |
7 | 0.2.0 / 2013-01-09
8 | ==================
9 |
10 | * added; .end()
11 | * fixed; only catch handler executions
12 |
13 | 0.1.0 / 2013-01-08
14 | ==================
15 |
16 | * cleaned up API
17 | * customizable event names
18 | * docs
19 |
20 | 0.0.1 / 2013-01-07
21 | ==================
22 |
23 | * original release
24 |
25 |
--------------------------------------------------------------------------------
/node_modules/mpromise/Makefile:
--------------------------------------------------------------------------------
1 | TESTS = $(shell find test/ -name '*.test.js')
2 |
3 | test:
4 | @make test-unit && echo "testing promises-A+ implementation ..." && make test-promises-A
5 |
6 | test-unit:
7 | @./node_modules/.bin/mocha $(T) --async-only $(TESTS)
8 |
9 | test-promises-A:
10 | @node test/promises-A.js
11 |
12 | .PHONY: test test-unit test-promises-A
13 |
--------------------------------------------------------------------------------
/node_modules/mpromise/index.js:
--------------------------------------------------------------------------------
1 | module.exports = exports = require('./lib/promise');
2 |
--------------------------------------------------------------------------------
/node_modules/mpromise/node_modules/sliced/.npmignore:
--------------------------------------------------------------------------------
1 | *.sw*
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/node_modules/mpromise/node_modules/sliced/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 |
--------------------------------------------------------------------------------
/node_modules/mpromise/node_modules/sliced/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @time ./node_modules/.bin/mocha $(T) $(TESTS)
4 |
5 | .PHONY: test
6 |
--------------------------------------------------------------------------------
/node_modules/mpromise/node_modules/sliced/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "sliced",
3 | "version": "0.0.3",
4 | "description": "A faster Node.js alternative to Array.prototype.slice.call(arguments)",
5 | "repo" : "aheckmann/sliced",
6 | "keywords": [
7 | "arguments",
8 | "slice",
9 | "array"
10 | ],
11 | "author": "Aaron Heckmann ",
12 | "license": "MIT"
13 | }
14 |
--------------------------------------------------------------------------------
/node_modules/mpromise/node_modules/sliced/index.js:
--------------------------------------------------------------------------------
1 | module.exports = exports = require('./lib/sliced');
2 |
--------------------------------------------------------------------------------
/node_modules/multer/node_modules/.bin/mkdirp:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3 |
4 | case `uname` in
5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;;
6 | esac
7 |
8 | if [ -x "$basedir/node" ]; then
9 | "$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@"
10 | ret=$?
11 | else
12 | node "$basedir/../mkdirp/bin/cmd.js" "$@"
13 | ret=$?
14 | fi
15 | exit $ret
16 |
--------------------------------------------------------------------------------
/node_modules/multer/node_modules/.bin/mkdirp.cmd:
--------------------------------------------------------------------------------
1 | @IF EXIST "%~dp0\node.exe" (
2 | "%~dp0\node.exe" "%~dp0\..\mkdirp\bin\cmd.js" %*
3 | ) ELSE (
4 | @SETLOCAL
5 | @SET PATHEXT=%PATHEXT:;.JS;=;%
6 | node "%~dp0\..\mkdirp\bin\cmd.js" %*
7 | )
--------------------------------------------------------------------------------
/node_modules/multer/node_modules/mkdirp/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 | - "0.12"
6 | - "iojs"
7 | before_install:
8 | - npm install -g npm@~1.4.6
9 |
--------------------------------------------------------------------------------
/node_modules/multer/node_modules/mkdirp/bin/usage.txt:
--------------------------------------------------------------------------------
1 | usage: mkdirp [DIR1,DIR2..] {OPTIONS}
2 |
3 | Create each supplied directory including any necessary parent directories that
4 | don't yet exist.
5 |
6 | If the directory already exists, do nothing.
7 |
8 | OPTIONS are:
9 |
10 | -m, --mode If a directory needs to be created, set the mode as an octal
11 | permission string.
12 |
13 |
--------------------------------------------------------------------------------
/node_modules/multer/node_modules/mkdirp/examples/pow.js:
--------------------------------------------------------------------------------
1 | var mkdirp = require('mkdirp');
2 |
3 | mkdirp('/tmp/foo/bar/baz', function (err) {
4 | if (err) console.error(err)
5 | else console.log('pow!')
6 | });
7 |
--------------------------------------------------------------------------------
/node_modules/muri/.npmignore:
--------------------------------------------------------------------------------
1 | *.sw*
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/node_modules/muri/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 |
--------------------------------------------------------------------------------
/node_modules/muri/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @node_modules/mocha/bin/mocha $(T)
4 |
5 | .PHONY: test
6 |
--------------------------------------------------------------------------------
/node_modules/muri/index.js:
--------------------------------------------------------------------------------
1 | module.exports = exports = require('./lib');
2 |
--------------------------------------------------------------------------------
/node_modules/nan/include_dirs.js:
--------------------------------------------------------------------------------
1 | console.log(require('path').relative('.', __dirname));
2 |
--------------------------------------------------------------------------------
/node_modules/on-headers/HISTORY.md:
--------------------------------------------------------------------------------
1 | 1.0.1 / 2015-09-29
2 | ==================
3 |
4 | * perf: enable strict mode
5 |
6 | 1.0.0 / 2014-08-10
7 | ==================
8 |
9 | * Honor `res.statusCode` change in `listener`
10 | * Move to `jshttp` orgainzation
11 | * Prevent `arguments`-related de-opt
12 |
13 | 0.0.0 / 2014-05-13
14 | ==================
15 |
16 | * Initial implementation
17 |
--------------------------------------------------------------------------------
/node_modules/options/.npmignore:
--------------------------------------------------------------------------------
1 | npm-debug.log
2 | node_modules
3 | .*.swp
4 | .lock-*
5 | build/
6 |
7 | test
8 |
--------------------------------------------------------------------------------
/node_modules/options/Makefile:
--------------------------------------------------------------------------------
1 | ALL_TESTS = $(shell find test/ -name '*.test.js')
2 |
3 | run-tests:
4 | @./node_modules/.bin/mocha \
5 | -t 2000 \
6 | $(TESTFLAGS) \
7 | $(TESTS)
8 |
9 | test:
10 | @$(MAKE) NODE_PATH=lib TESTS="$(ALL_TESTS)" run-tests
11 |
12 | .PHONY: test
13 |
--------------------------------------------------------------------------------
/node_modules/pause/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 | *.sock
5 |
--------------------------------------------------------------------------------
/node_modules/pause/History.md:
--------------------------------------------------------------------------------
1 |
2 | 0.0.1 / 2010-01-03
3 | ==================
4 |
5 | * Initial release
6 |
--------------------------------------------------------------------------------
/node_modules/pause/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @./node_modules/.bin/mocha \
4 | --require should \
5 | --reporter spec
6 |
7 | .PHONY: test
--------------------------------------------------------------------------------
/node_modules/policyfile/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
--------------------------------------------------------------------------------
/node_modules/policyfile/Makefile:
--------------------------------------------------------------------------------
1 | doc:
2 | dox --title "FlashPolicyFileServer" lib/* > doc/index.html
3 |
4 | test:
5 | expresso -I lib $(TESTFLAGS) tests/*.test.js
6 |
7 | .PHONY: test doc
--------------------------------------------------------------------------------
/node_modules/policyfile/examples/basic.fallback.js:
--------------------------------------------------------------------------------
1 | var http = require('http')
2 | , fspfs = require('../');
3 |
4 | var server = http.createServer(function(q,r){ r.writeHead(200); r.end(':3') })
5 | , flash = fspfs.createServer();
6 |
7 | server.listen(8080);
8 | flash.listen(8081,server);
--------------------------------------------------------------------------------
/node_modules/policyfile/examples/basic.js:
--------------------------------------------------------------------------------
1 | var http = require('http')
2 | , fspfs = require('../');
3 |
4 | var flash = fspfs.createServer();
5 | flash.listen();
--------------------------------------------------------------------------------
/node_modules/policyfile/index.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./lib/server.js');
--------------------------------------------------------------------------------
/node_modules/process-nextick-args/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 | - "0.11"
6 | - "0.12"
7 | - "1.7.1"
8 | - 1
9 | - 2
10 | - 3
11 | - 4
12 | - 5
13 |
--------------------------------------------------------------------------------
/node_modules/qs/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "support/expresso"]
2 | path = support/expresso
3 | url = git://github.com/visionmedia/expresso.git
4 | [submodule "support/should"]
5 | path = support/should
6 | url = git://github.com/visionmedia/should.js.git
7 |
--------------------------------------------------------------------------------
/node_modules/qs/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 | .travis.yml
3 | benchmark.js
4 | component.json
5 | examples.js
6 | History.md
7 | Makefile
8 |
--------------------------------------------------------------------------------
/node_modules/random-bytes/HISTORY.md:
--------------------------------------------------------------------------------
1 | 1.0.0 / 2016-01-17
2 | ==================
3 |
4 | * Initial release
5 |
--------------------------------------------------------------------------------
/node_modules/range-parser/.npmignore:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/node_modules/range-parser/History.md:
--------------------------------------------------------------------------------
1 |
2 | 0.0.4 / 2012-06-17
3 | ==================
4 |
5 | * changed: ret -1 for unsatisfiable and -2 when invalid
6 |
7 | 0.0.3 / 2012-06-17
8 | ==================
9 |
10 | * fix last-byte-pos default to len - 1
11 |
12 | 0.0.2 / 2012-06-14
13 | ==================
14 |
15 | * add `.type`
16 |
--------------------------------------------------------------------------------
/node_modules/range-parser/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @./node_modules/.bin/mocha \
4 | --reporter spec \
5 | --require should
6 |
7 | .PHONY: test
--------------------------------------------------------------------------------
/node_modules/readable-stream/.npmignore:
--------------------------------------------------------------------------------
1 | build/
2 | test/
3 | examples/
4 | fs.js
5 | zlib.js
--------------------------------------------------------------------------------
/node_modules/readable-stream/duplex.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_duplex.js")
2 |
--------------------------------------------------------------------------------
/node_modules/readable-stream/passthrough.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_passthrough.js")
2 |
--------------------------------------------------------------------------------
/node_modules/readable-stream/transform.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_transform.js")
2 |
--------------------------------------------------------------------------------
/node_modules/readable-stream/writable.js:
--------------------------------------------------------------------------------
1 | module.exports = require("./lib/_stream_writable.js")
2 |
--------------------------------------------------------------------------------
/node_modules/redis/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/node_modules/redis/benches/re_sub_test.js:
--------------------------------------------------------------------------------
1 | var client = require('../index').createClient()
2 | , client2 = require('../index').createClient()
3 | , assert = require('assert');
4 |
5 | client.once('subscribe', function (channel, count) {
6 | client.unsubscribe('x');
7 | client.subscribe('x', function () {
8 | client.quit();
9 | client2.quit();
10 | });
11 | client2.publish('x', 'hi');
12 | });
13 |
14 | client.subscribe('x');
15 |
--------------------------------------------------------------------------------
/node_modules/redis/benches/stress/codec.js:
--------------------------------------------------------------------------------
1 | var json = {
2 | encode: JSON.stringify,
3 | decode: JSON.parse
4 | };
5 |
6 | var MsgPack = require('node-msgpack');
7 | msgpack = {
8 | encode: MsgPack.pack,
9 | decode: function(str) { return MsgPack.unpack(new Buffer(str)); }
10 | };
11 |
12 | bison = require('bison');
13 |
14 | module.exports = json;
15 | //module.exports = msgpack;
16 | //module.exports = bison;
17 |
--------------------------------------------------------------------------------
/node_modules/redis/benches/stress/pubsub/run:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | node server.js &
3 | node server.js &
4 | node server.js &
5 | node server.js &
6 | node server.js &
7 | node server.js &
8 | node server.js &
9 | node server.js &
10 | node --debug pub.js
11 |
--------------------------------------------------------------------------------
/node_modules/redis/benches/stress/rpushblpop/run:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | node server.js &
3 | #node server.js &
4 | #node server.js &
5 | #node server.js &
6 | node --debug pub.js
7 |
--------------------------------------------------------------------------------
/node_modules/redis/benches/stress/speed/00:
--------------------------------------------------------------------------------
1 | # size JSON msgpack bison
2 | 26602 2151.0170848180414
3 | 25542 ? 2842.589272665782
4 | 24835 ? ? 7280.4538397469805
5 | 6104 6985.234528557929
6 | 5045 ? 7217.461392841478
7 | 4341 ? ? 14261.406335354604
8 | 4180 15864.633685636572
9 | 4143 ? 12954.806235781925
10 | 4141 ? ? 44650.70733912719
11 | 75 114227.07313350472
12 | 40 ? 30162.440062810834
13 | 39 ? ? 119815.66013519121
14 |
--------------------------------------------------------------------------------
/node_modules/redis/benches/stress/speed/plot:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | gnuplot >size-rate.jpg << _EOF_
4 |
5 | set terminal png nocrop enhanced font verdana 12 size 640,480
6 | set logscale x
7 | set logscale y
8 | set grid
9 | set xlabel 'Serialized object size, octets'
10 | set ylabel 'decode(encode(obj)) rate, 1/sec'
11 | plot '00' using 1:2 title 'json' smooth bezier, '00' using 1:3 title 'msgpack' smooth bezier, '00' using 1:4 title 'bison' smooth bezier
12 |
13 | _EOF_
14 |
--------------------------------------------------------------------------------
/node_modules/redis/benches/stress/speed/size-rate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/redis/benches/stress/speed/size-rate.png
--------------------------------------------------------------------------------
/node_modules/redis/examples/auth.js:
--------------------------------------------------------------------------------
1 | var redis = require("redis"),
2 | client = redis.createClient();
3 |
4 | // This command is magical. Client stashes the password and will issue on every connect.
5 | client.auth("somepass");
6 |
--------------------------------------------------------------------------------
/node_modules/redis/examples/eval.js:
--------------------------------------------------------------------------------
1 | var redis = require("./index"),
2 | client = redis.createClient();
3 |
4 | redis.debug_mode = true;
5 |
6 | client.eval("return 100.5", 0, function (err, res) {
7 | console.dir(err);
8 | console.dir(res);
9 | });
10 |
--------------------------------------------------------------------------------
/node_modules/redis/examples/mget.js:
--------------------------------------------------------------------------------
1 | var client = require("redis").createClient();
2 |
3 | client.mget(["sessions started", "sessions started", "foo"], function (err, res) {
4 | console.dir(res);
5 | });
--------------------------------------------------------------------------------
/node_modules/redis/examples/monitor.js:
--------------------------------------------------------------------------------
1 | var client = require("../index").createClient(),
2 | util = require("util");
3 |
4 | client.monitor(function (err, res) {
5 | console.log("Entering monitoring mode.");
6 | });
7 |
8 | client.on("monitor", function (time, args) {
9 | console.log(time + ": " + util.inspect(args));
10 | });
11 |
--------------------------------------------------------------------------------
/node_modules/redis/lib/to_array.js:
--------------------------------------------------------------------------------
1 | function to_array(args) {
2 | var len = args.length,
3 | arr = new Array(len), i;
4 |
5 | for (i = 0; i < len; i += 1) {
6 | arr[i] = args[i];
7 | }
8 |
9 | return arr;
10 | }
11 |
12 | module.exports = to_array;
13 |
--------------------------------------------------------------------------------
/node_modules/redis/lib/util.js:
--------------------------------------------------------------------------------
1 | // Support for very old versions of node where the module was called "sys". At some point, we should abandon this.
2 |
3 | var util;
4 |
5 | try {
6 | util = require("util");
7 | } catch (err) {
8 | util = require("sys");
9 | }
10 |
11 | module.exports = util;
12 |
--------------------------------------------------------------------------------
/node_modules/redis/mem.js:
--------------------------------------------------------------------------------
1 | var client = require("redis").createClient();
2 |
3 | client.set("foo", "barvalskdjlksdjflkdsjflksdjdflkdsjflksdjflksdj", function (err, res) {
4 | if (err) {
5 | console.log("Got an error, please adapt somehow.");
6 | } else {
7 | console.log("Got a result: " + res);
8 | }
9 | });
10 |
11 | client.quit();
12 |
--------------------------------------------------------------------------------
/node_modules/regexp-clone/.npmignore:
--------------------------------------------------------------------------------
1 | *.sw*
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/node_modules/regexp-clone/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 | - 0.10
6 |
--------------------------------------------------------------------------------
/node_modules/regexp-clone/History.md:
--------------------------------------------------------------------------------
1 |
2 | 0.0.1 / 2013-04-17
3 | ==================
4 |
5 | * initial commit
6 |
--------------------------------------------------------------------------------
/node_modules/regexp-clone/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @./node_modules/.bin/mocha $(T) --async-only $(TESTS)
4 |
5 | .PHONY: test
6 |
--------------------------------------------------------------------------------
/node_modules/regexp-clone/README.md:
--------------------------------------------------------------------------------
1 | #regexp-clone
2 | ==============
3 |
4 | Clones RegExps with flag preservation
5 |
6 | ```js
7 | var regexpClone = require('regexp-clone');
8 |
9 | var a = /somethin/g;
10 | console.log(a.global); // true
11 |
12 | var b = regexpClone(a);
13 | console.log(b.global); // true
14 | ```
15 |
16 | ## License
17 |
18 | [MIT](https://github.com/aheckmann/regexp-clone/blob/master/LICENSE)
19 |
--------------------------------------------------------------------------------
/node_modules/send/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 | *.sock
5 |
--------------------------------------------------------------------------------
/node_modules/send/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @./node_modules/.bin/mocha \
4 | --require should \
5 | --reporter spec \
6 | --bail
7 |
8 | .PHONY: test
--------------------------------------------------------------------------------
/node_modules/send/index.js:
--------------------------------------------------------------------------------
1 |
2 | module.exports = require('./lib/send');
--------------------------------------------------------------------------------
/node_modules/setprototypeof/index.js:
--------------------------------------------------------------------------------
1 | module.exports = Object.setPrototypeOf || ({__proto__:[]} instanceof Array ? setProtoOf : mixinProperties);
2 |
3 | function setProtoOf(obj, proto) {
4 | obj.__proto__ = proto;
5 | return obj;
6 | }
7 |
8 | function mixinProperties(obj, proto) {
9 | for (var prop in proto) {
10 | if (!obj.hasOwnProperty(prop)) {
11 | obj[prop] = proto[prop];
12 | }
13 | }
14 | return obj;
15 | }
16 |
--------------------------------------------------------------------------------
/node_modules/sliced/.npmignore:
--------------------------------------------------------------------------------
1 | *.sw*
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/node_modules/sliced/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 | - 0.8
5 |
--------------------------------------------------------------------------------
/node_modules/sliced/Makefile:
--------------------------------------------------------------------------------
1 |
2 | test:
3 | @./node_modules/.bin/mocha $(T) $(TESTS)
4 |
5 | .PHONY: test
6 |
--------------------------------------------------------------------------------
/node_modules/sliced/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "sliced",
3 | "version": "0.0.5",
4 | "description": "A faster Node.js alternative to Array.prototype.slice.call(arguments)",
5 | "repo" : "aheckmann/sliced",
6 | "keywords": [
7 | "arguments",
8 | "slice",
9 | "array"
10 | ],
11 | "scripts": ["lib/sliced.js", "index.js"],
12 | "author": "Aaron Heckmann ",
13 | "license": "MIT"
14 | }
15 |
--------------------------------------------------------------------------------
/node_modules/sliced/index.js:
--------------------------------------------------------------------------------
1 | module.exports = exports = require('./lib/sliced');
2 |
--------------------------------------------------------------------------------
/node_modules/socket.io-client/.npmignore:
--------------------------------------------------------------------------------
1 | test/node_modules
2 | support
3 |
--------------------------------------------------------------------------------
/node_modules/socket.io-client/Makefile:
--------------------------------------------------------------------------------
1 |
2 | ALL_TESTS = $(shell find test/ -name '*.test.js')
3 |
4 | run-tests:
5 | @./node_modules/.bin/expresso \
6 | -I lib \
7 | -I support \
8 | --serial \
9 | $(TESTS)
10 |
11 | test:
12 | @$(MAKE) TESTS="$(ALL_TESTS)" run-tests
13 |
14 | test-acceptance:
15 | @node support/test-runner/app $(TRANSPORT)
16 |
17 | build:
18 | @node ./bin/builder.js
19 |
20 | .PHONY: test
21 |
--------------------------------------------------------------------------------
/node_modules/socket.io-client/components/component-bind/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "bind",
3 | "version": "0.0.1",
4 | "description": "function binding utility",
5 | "keywords": [
6 | "bind",
7 | "utility"
8 | ],
9 | "dependencies": {},
10 | "scripts": [
11 | "index.js"
12 | ],
13 | "repo": "https://raw.github.com/component/bind"
14 | }
--------------------------------------------------------------------------------
/node_modules/socket.io-client/components/component-emitter/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "emitter",
3 | "description": "Event emitter",
4 | "keywords": [
5 | "emitter",
6 | "events"
7 | ],
8 | "version": "0.0.6",
9 | "scripts": [
10 | "index.js"
11 | ],
12 | "repo": "https://raw.github.com/component/emitter"
13 | }
--------------------------------------------------------------------------------
/node_modules/socket.io-client/components/component-json-fallback/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "json-fallback",
3 | "repo": "component/json",
4 | "description": "JSON parser / stringifier fallback",
5 | "version": "0.0.1",
6 | "keywords": [
7 | "json",
8 | "fallback"
9 | ],
10 | "dependencies": {},
11 | "development": {},
12 | "scripts": [
13 | "index.js"
14 | ]
15 | }
--------------------------------------------------------------------------------
/node_modules/socket.io-client/components/component-json/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "json",
3 | "repo": "component/json",
4 | "description": "JSON parser / stringifier",
5 | "version": "0.0.1",
6 | "keywords": [
7 | "json"
8 | ],
9 | "dependencies": {},
10 | "development": {},
11 | "optional": {
12 | "component/json-fallback": "*"
13 | },
14 | "scripts": [
15 | "index.js"
16 | ]
17 | }
--------------------------------------------------------------------------------
/node_modules/socket.io-client/components/component-json/index.js:
--------------------------------------------------------------------------------
1 |
2 | module.exports = 'undefined' == typeof JSON
3 | ? require('json-fallback')
4 | : JSON;
5 |
--------------------------------------------------------------------------------
/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/index.js:
--------------------------------------------------------------------------------
1 |
2 | module.exports = require('./socket');
3 |
--------------------------------------------------------------------------------
/node_modules/socket.io-client/components/learnboost-socket.io-protocol/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "socket.io-parser",
3 | "version": "1.0.1",
4 | "description": "socket.io protocol parser",
5 | "dependencies": {
6 | "component/json": "*"
7 | },
8 | "scripts": [
9 | "index.js"
10 | ],
11 | "repo": "https://raw.github.com/learnboost/socket.io-protocol"
12 | }
--------------------------------------------------------------------------------
/node_modules/socket.io-client/components/timoxley-to-array/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "to-array",
3 | "repo": "timoxley/to-array",
4 | "description": "Convert an array-like object into an Array.",
5 | "version": "0.1.4",
6 | "keywords": [],
7 | "dependencies": {},
8 | "development": {
9 | "timoxley/assert": "*",
10 | "component/domify": "*"
11 | },
12 | "license": "MIT",
13 | "scripts": [
14 | "index.js"
15 | ]
16 | }
--------------------------------------------------------------------------------
/node_modules/socket.io-client/components/visionmedia-debug/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "debug",
3 | "repo": "visionmedia/debug",
4 | "description": "small debugging utility",
5 | "version": "0.7.0",
6 | "keywords": [
7 | "debug",
8 | "log",
9 | "debugger"
10 | ],
11 | "scripts": [
12 | "index.js",
13 | "debug.js"
14 | ],
15 | "dependencies": {}
16 | }
--------------------------------------------------------------------------------
/node_modules/socket.io-client/components/visionmedia-debug/index.js:
--------------------------------------------------------------------------------
1 | if ('undefined' == typeof window) {
2 | module.exports = require('./lib/debug');
3 | } else {
4 | module.exports = require('./debug');
5 | }
6 |
--------------------------------------------------------------------------------
/node_modules/socket.io-client/dist/WebSocketMain.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/socket.io-client/dist/WebSocketMain.swf
--------------------------------------------------------------------------------
/node_modules/socket.io-client/dist/WebSocketMainInsecure.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/socket.io-client/dist/WebSocketMainInsecure.swf
--------------------------------------------------------------------------------
/node_modules/socket.io-client/lib/vendor/web-socket-js/.npmignore:
--------------------------------------------------------------------------------
1 | test.html
2 |
--------------------------------------------------------------------------------
/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMain.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMain.swf
--------------------------------------------------------------------------------
/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMainInsecure.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMainInsecure.zip
--------------------------------------------------------------------------------
/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/IWebSocketLogger.as:
--------------------------------------------------------------------------------
1 | package {
2 |
3 | public interface IWebSocketLogger {
4 | function log(message:String):void;
5 | function error(message:String):void;
6 | }
7 |
8 | }
9 |
--------------------------------------------------------------------------------
/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IMode.as:
--------------------------------------------------------------------------------
1 | /**
2 | * IMode
3 | *
4 | * An interface for confidentiality modes to implement
5 | * This could become deprecated at some point.
6 | * Copyright (c) 2007 Henri Torgemane
7 | *
8 | * See LICENSE.txt for full license information.
9 | */
10 | package com.hurlant.crypto.symmetric
11 | {
12 | public interface IMode extends ICipher
13 | {
14 | }
15 | }
--------------------------------------------------------------------------------
/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/IConnectionState.as:
--------------------------------------------------------------------------------
1 | /**
2 | * IConnectionState
3 | *
4 | * Interface for TLS/SSL Connection states.
5 | *
6 | * See LICENSE.txt for full license information.
7 | */
8 | package com.hurlant.crypto.tls {
9 | import flash.utils.ByteArray;
10 | public interface IConnectionState {
11 | function decrypt(type:uint, length:uint, p:ByteArray) : ByteArray;
12 | function encrypt(type:uint, p:ByteArray) : ByteArray;
13 | }
14 | }
--------------------------------------------------------------------------------
/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/IReduction.as:
--------------------------------------------------------------------------------
1 | package com.hurlant.math
2 | {
3 | internal interface IReduction
4 | {
5 | function convert(x:BigInteger):BigInteger;
6 | function revert(x:BigInteger):BigInteger;
7 | function reduce(x:BigInteger):void;
8 | function mulTo(x:BigInteger, y:BigInteger, r:BigInteger):void;
9 | function sqrTo(x:BigInteger, r:BigInteger):void;
10 | }
11 | }
--------------------------------------------------------------------------------
/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/bi_internal.as:
--------------------------------------------------------------------------------
1 | /**
2 | * bi_internal
3 | *
4 | * A namespace. w00t.
5 | * Copyright (c) 2007 Henri Torgemane
6 | *
7 | * See LICENSE.txt for full license information.
8 | */
9 | package com.hurlant.math {
10 | public namespace bi_internal = "http://crypto.hurlant.com/BigInteger";
11 | }
--------------------------------------------------------------------------------
/node_modules/socket.io/.npmignore:
--------------------------------------------------------------------------------
1 | support
2 | test
3 | examples
4 |
--------------------------------------------------------------------------------
/node_modules/socket.io/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 0.6
4 |
5 | notifications:
6 | irc: "irc.freenode.org#socket.io"
7 |
--------------------------------------------------------------------------------
/node_modules/socket.io/index.js:
--------------------------------------------------------------------------------
1 |
2 | /*!
3 | * socket.io-node
4 | * Copyright(c) 2011 LearnBoost
5 | * MIT Licensed
6 | */
7 |
8 | module.exports = require('./lib/socket.io');
9 |
--------------------------------------------------------------------------------
/node_modules/socket.io/latest:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | npm tag socket.io@0.9.16 latest
3 |
--------------------------------------------------------------------------------
/node_modules/socket.io/lib/transports/index.js:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * Export transports.
4 | */
5 |
6 | module.exports = {
7 | websocket: require('./websocket')
8 | , flashsocket: require('./flashsocket')
9 | , htmlfile: require('./htmlfile')
10 | , 'xhr-polling': require('./xhr-polling')
11 | , 'jsonp-polling': require('./jsonp-polling')
12 | };
13 |
--------------------------------------------------------------------------------
/node_modules/socket.io/lib/transports/websocket/index.js:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * Export websocket versions.
4 | */
5 |
6 | module.exports = {
7 | 7: require('./hybi-07-12'),
8 | 8: require('./hybi-07-12'),
9 | 13: require('./hybi-16'),
10 | default: require('./default')
11 | };
12 |
--------------------------------------------------------------------------------
/node_modules/string_decoder/.npmignore:
--------------------------------------------------------------------------------
1 | build
2 | test
3 |
--------------------------------------------------------------------------------
/node_modules/tinycolor/.npmignore:
--------------------------------------------------------------------------------
1 | npm-debug.log
2 | node_modules
3 | .*.swp
4 | .lock-*
5 | build/
6 |
--------------------------------------------------------------------------------
/node_modules/tinycolor/README.md:
--------------------------------------------------------------------------------
1 | # tinycolor #
2 |
3 | This is a no-fuzz, barebone, zero muppetry color module for node.js.
--------------------------------------------------------------------------------
/node_modules/tinycolor/example.js:
--------------------------------------------------------------------------------
1 | require('./tinycolor');
2 | console.log('this should be red and have an underline!'.grey.underline);
3 | console.log('this should have a blue background!'.bgBlue);
--------------------------------------------------------------------------------
/node_modules/typedarray/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - "0.8"
4 | - "0.10"
5 |
--------------------------------------------------------------------------------
/node_modules/typedarray/example/tarray.js:
--------------------------------------------------------------------------------
1 | var Uint8Array = require('../').Uint8Array;
2 | var ua = new Uint8Array(5);
3 | ua[1] = 256 + 55;
4 | console.log(ua[1]);
5 |
--------------------------------------------------------------------------------
/node_modules/typedarray/test/tarray.js:
--------------------------------------------------------------------------------
1 | var TA = require('../');
2 | var test = require('tape');
3 |
4 | test('tiny u8a test', function (t) {
5 | var ua = new(TA.Uint8Array)(5);
6 | t.equal(ua.length, 5);
7 | ua[1] = 256 + 55;
8 | t.equal(ua[1], 55);
9 | t.end();
10 | });
11 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/.npmignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | .tmp*~
3 | *.local.*
4 | .pinf-*
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/array1.js:
--------------------------------------------------------------------------------
1 | [],Array(1),[1,2,3]
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/array2.js:
--------------------------------------------------------------------------------
1 | (function(){var a=function(){};return new a(1,2,3,4)})()
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/array3.js:
--------------------------------------------------------------------------------
1 | (function(){function a(){}return new a(1,2,3,4)})()
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/array4.js:
--------------------------------------------------------------------------------
1 | (function(){function a(){}(function(){return new a(1,2,3)})()})()
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/assignment.js:
--------------------------------------------------------------------------------
1 | a=1,b=a,c=1,d=b,e=d,longname=2;if(longname+1){x=3;if(x)var z=7}z=1,y=1,x=1,g+=1,h=g,++i,j=i,i++,j=i+17
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/concatstring.js:
--------------------------------------------------------------------------------
1 | var a=a+"a"+"b"+1+c,b=a+"c"+"ds"+123+c,c=a+"c"+123+d+"ds"+c
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/const.js:
--------------------------------------------------------------------------------
1 | var a=13,b=1/3
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js:
--------------------------------------------------------------------------------
1 | function bar(){return--x}function foo(){while(bar());}function mak(){for(;;);}var x=5
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/forstatement.js:
--------------------------------------------------------------------------------
1 | a=func(),b=z;for(a++;i<10;i++)alert(i);var z=1;g=2;for(;i<10;i++)alert(i);var a=2;for(var i=1;i<10;i++)alert(i)
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/if.js:
--------------------------------------------------------------------------------
1 | var a=1;a==1?a=2:a=17
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/ifreturn.js:
--------------------------------------------------------------------------------
1 | function a(a){return a==1?2:17}
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/ifreturn2.js:
--------------------------------------------------------------------------------
1 | function x(a){return typeof a=="object"?a:a===42?0:a*2}function y(a){return typeof a=="object"?a:null}
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue10.js:
--------------------------------------------------------------------------------
1 | function f(){var a;return(a="a")?a:a}f()
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue11.js:
--------------------------------------------------------------------------------
1 | new(A,B),new(A||B),new(X?A:B)
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue13.js:
--------------------------------------------------------------------------------
1 | var a=/^(?:(\w+):)?(?:\/\/(?:(?:([^:@\/]*):?([^:@\/]*))?@)?([^:\/?#])(?::(\d))?)?(..?$|(?:[^?#\/]\/))([^?#]*)(?:\?([^#]))?(?:#(.))?/
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue14.js:
--------------------------------------------------------------------------------
1 | var a={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"}
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue16.js:
--------------------------------------------------------------------------------
1 | var a=3250441966
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue17.js:
--------------------------------------------------------------------------------
1 | var a=function(b){b(),a()}
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue20.js:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue21.js:
--------------------------------------------------------------------------------
1 | var a=0;switch(a){case 0:a++}
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue25.js:
--------------------------------------------------------------------------------
1 | a:break a;console.log(1)
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue27.js:
--------------------------------------------------------------------------------
1 | (a?b:c)?d:e
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue278.js:
--------------------------------------------------------------------------------
1 | if(!x)debugger
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue28.js:
--------------------------------------------------------------------------------
1 | o={".5":.5},o={.5:.5},o={.5:.5}
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue29.js:
--------------------------------------------------------------------------------
1 | result=function(){return 1}()
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue30.js:
--------------------------------------------------------------------------------
1 | var a=8,b=4,c=4
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue34.js:
--------------------------------------------------------------------------------
1 | var a={};a["this"]=1,a.that=2
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue4.js:
--------------------------------------------------------------------------------
1 | var a=2e3,b=.002,c=2e-5
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue48.js:
--------------------------------------------------------------------------------
1 | var s,i;s="",i=0
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue50.js:
--------------------------------------------------------------------------------
1 | function bar(a){try{foo()}catch(b){alert("Exception caught (foo not defined)")}alert(a)}bar(10)
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue53.js:
--------------------------------------------------------------------------------
1 | x=(y,z)
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js:
--------------------------------------------------------------------------------
1 | foo+"",a.toString(16),b.toString.call(c)
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue68.js:
--------------------------------------------------------------------------------
1 | function f(){function b(){}if(a)return;b()}
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue69.js:
--------------------------------------------------------------------------------
1 | [(a,b)]
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/issue9.js:
--------------------------------------------------------------------------------
1 | var a={a:1,b:2}
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/mangle.js:
--------------------------------------------------------------------------------
1 | (function(){var a=function b(a,b,c){return b}})()
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/null_string.js:
--------------------------------------------------------------------------------
1 | var nullString="\0"
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js:
--------------------------------------------------------------------------------
1 | typeof a=="string",b+""!=c+"",d> 1;
3 | var c = 8 >>> 1;
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/issue34.js:
--------------------------------------------------------------------------------
1 | var a = {};
2 | a["this"] = 1;
3 | a["that"] = 2;
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/issue4.js:
--------------------------------------------------------------------------------
1 | var a = 2e3;
2 | var b = 2e-3;
3 | var c = 2e-5;
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/issue48.js:
--------------------------------------------------------------------------------
1 | var s, i; s = ''; i = 0;
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/issue50.js:
--------------------------------------------------------------------------------
1 | function bar(a) {
2 | try {
3 | foo();
4 | } catch(e) {
5 | alert("Exception caught (foo not defined)");
6 | }
7 | alert(a); // 10 in FF, "[object Error]" in IE
8 | }
9 | bar(10);
10 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/issue53.js:
--------------------------------------------------------------------------------
1 | x = (y, z)
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/issue54.1.js:
--------------------------------------------------------------------------------
1 | foo.toString();
2 | a.toString(16);
3 | b.toString.call(c);
4 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/issue68.js:
--------------------------------------------------------------------------------
1 | function f() {
2 | if (a) return;
3 | g();
4 | function g(){}
5 | };
6 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/issue69.js:
--------------------------------------------------------------------------------
1 | [(a,b)]
2 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/issue9.js:
--------------------------------------------------------------------------------
1 | var a = {
2 | a: 1,
3 | b: 2, // <-- trailing comma
4 | };
5 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/mangle.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var x = function fun(a, fun, b) {
3 | return fun;
4 | };
5 | }());
6 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/null_string.js:
--------------------------------------------------------------------------------
1 | var nullString = "\0"
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/strict-equals.js:
--------------------------------------------------------------------------------
1 | typeof a === 'string'
2 | b + "" !== c + ""
3 | d < e === f < g
4 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/var.js:
--------------------------------------------------------------------------------
1 | // var declarations after each other should be combined
2 | var a = 1;
3 | var b = 2;
--------------------------------------------------------------------------------
/node_modules/uglify-js/test/unit/compress/test/with.js:
--------------------------------------------------------------------------------
1 | with({}) {
2 | };
3 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/tmp/269.js:
--------------------------------------------------------------------------------
1 | var jsp = require("uglify-js").parser;
2 | var pro = require("uglify-js").uglify;
3 |
4 | var test_code = "var JSON;JSON||(JSON={});";
5 |
6 | var ast = jsp.parse(test_code, false, false);
7 | var nonembed_token_code = pro.gen_code(ast);
8 | ast = jsp.parse(test_code, false, true);
9 | var embed_token_code = pro.gen_code(ast);
10 |
11 | console.log("original: " + test_code);
12 | console.log("no token: " + nonembed_token_code);
13 | console.log(" token: " + embed_token_code);
14 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/tmp/goto2.js:
--------------------------------------------------------------------------------
1 | function q(qooo) {
2 | var a;
3 | foo: for(;;) {
4 | a++;
5 | if (something) break foo;
6 | return qooo;
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/node_modules/uglify-js/tmp/liftvars.js:
--------------------------------------------------------------------------------
1 | var UNUSED_VAR1 = 19;
2 |
3 | function main() {
4 | var unused_var2 = 20;
5 | alert(100);
6 | }
7 |
8 | main();
9 |
--------------------------------------------------------------------------------
/node_modules/unpipe/HISTORY.md:
--------------------------------------------------------------------------------
1 | 1.0.0 / 2015-06-14
2 | ==================
3 |
4 | * Initial release
5 |
--------------------------------------------------------------------------------
/node_modules/util-deprecate/History.md:
--------------------------------------------------------------------------------
1 |
2 | 1.0.2 / 2015-10-07
3 | ==================
4 |
5 | * use try/catch when checking `localStorage` (#3, @kumavis)
6 |
7 | 1.0.1 / 2014-11-25
8 | ==================
9 |
10 | * browser: use `console.warn()` for deprecation calls
11 | * browser: more jsdocs
12 |
13 | 1.0.0 / 2014-04-30
14 | ==================
15 |
16 | * initial commit
17 |
--------------------------------------------------------------------------------
/node_modules/util-deprecate/node.js:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * For Node.js, simply re-export the core `util.deprecate` function.
4 | */
5 |
6 | module.exports = require('util').deprecate;
7 |
--------------------------------------------------------------------------------
/node_modules/utils-merge/.travis.yml:
--------------------------------------------------------------------------------
1 | language: "node_js"
2 | node_js:
3 | - "0.4"
4 | - "0.6"
5 | - "0.8"
6 | - "0.10"
7 |
--------------------------------------------------------------------------------
/node_modules/utils-merge/index.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Merge object b with object a.
3 | *
4 | * var a = { foo: 'bar' }
5 | * , b = { bar: 'baz' };
6 | *
7 | * merge(a, b);
8 | * // => { foo: 'bar', bar: 'baz' }
9 | *
10 | * @param {Object} a
11 | * @param {Object} b
12 | * @return {Object}
13 | * @api public
14 | */
15 |
16 | exports = module.exports = function(a, b){
17 | if (a && b) {
18 | for (var key in b) {
19 | a[key] = b[key];
20 | }
21 | }
22 | return a;
23 | };
24 |
--------------------------------------------------------------------------------
/node_modules/ws/.npmignore:
--------------------------------------------------------------------------------
1 | npm-debug.log
2 | node_modules
3 | .*.swp
4 | .lock-*
5 | build
6 |
7 | bench
8 | doc
9 | examples
10 | test
11 |
12 |
--------------------------------------------------------------------------------
/node_modules/ws/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | npm_args: --ws:native
3 | node_js:
4 | - "0.8"
5 | - "0.10"
6 |
--------------------------------------------------------------------------------
/node_modules/ws/binding.gyp:
--------------------------------------------------------------------------------
1 | {
2 | 'targets': [
3 | {
4 | 'target_name': 'validation',
5 | 'include_dirs': ["
4 | * MIT Licensed
5 | */
6 |
7 | module.exports.Validation = {
8 | isValidUTF8: function(buffer) {
9 | return true;
10 | }
11 | };
12 |
13 |
--------------------------------------------------------------------------------
/node_modules/xmlhttprequest/autotest.watchr:
--------------------------------------------------------------------------------
1 | def run_all_tests
2 | puts `clear`
3 | puts `node tests/test-constants.js`
4 | puts `node tests/test-headers.js`
5 | puts `node tests/test-request.js`
6 | end
7 | watch('.*.js') { run_all_tests }
8 | run_all_tests
9 |
--------------------------------------------------------------------------------
/node_modules/xmlhttprequest/example/demo.js:
--------------------------------------------------------------------------------
1 | var sys = require('util');
2 | var XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;
3 |
4 | var xhr = new XMLHttpRequest();
5 |
6 | xhr.onreadystatechange = function() {
7 | sys.puts("State: " + this.readyState);
8 |
9 | if (this.readyState == 4) {
10 | sys.puts("Complete.\nBody length: " + this.responseText.length);
11 | sys.puts("Body:\n" + this.responseText);
12 | }
13 | };
14 |
15 | xhr.open("GET", "http://driverdan.com");
16 | xhr.send();
17 |
--------------------------------------------------------------------------------
/node_modules/xmlhttprequest/tests/test-constants.js:
--------------------------------------------------------------------------------
1 | var sys = require("util")
2 | , assert = require("assert")
3 | , XMLHttpRequest = require("../lib/XMLHttpRequest").XMLHttpRequest
4 | , xhr = new XMLHttpRequest();
5 |
6 | // Test constant values
7 | assert.equal(0, xhr.UNSENT);
8 | assert.equal(1, xhr.OPENED);
9 | assert.equal(2, xhr.HEADERS_RECEIVED);
10 | assert.equal(3, xhr.LOADING);
11 | assert.equal(4, xhr.DONE);
12 |
13 | sys.puts("done");
14 |
--------------------------------------------------------------------------------
/node_modules/xmlhttprequest/tests/testdata.txt:
--------------------------------------------------------------------------------
1 | Hello World
2 |
--------------------------------------------------------------------------------
/node_modules/xtend/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/node_modules/xtend/Makefile:
--------------------------------------------------------------------------------
1 | browser:
2 | node ./support/compile
3 |
4 | .PHONY: browser
--------------------------------------------------------------------------------
/node_modules/xtend/immutable.js:
--------------------------------------------------------------------------------
1 | module.exports = extend
2 |
3 | var hasOwnProperty = Object.prototype.hasOwnProperty;
4 |
5 | function extend() {
6 | var target = {}
7 |
8 | for (var i = 0; i < arguments.length; i++) {
9 | var source = arguments[i]
10 |
11 | for (var key in source) {
12 | if (hasOwnProperty.call(source, key)) {
13 | target[key] = source[key]
14 | }
15 | }
16 | }
17 |
18 | return target
19 | }
20 |
--------------------------------------------------------------------------------
/node_modules/xtend/mutable.js:
--------------------------------------------------------------------------------
1 | module.exports = extend
2 |
3 | var hasOwnProperty = Object.prototype.hasOwnProperty;
4 |
5 | function extend(target) {
6 | for (var i = 1; i < arguments.length; i++) {
7 | var source = arguments[i]
8 |
9 | for (var key in source) {
10 | if (hasOwnProperty.call(source, key)) {
11 | target[key] = source[key]
12 | }
13 | }
14 | }
15 |
16 | return target
17 | }
18 |
--------------------------------------------------------------------------------
/node_modules/zeparser/.npmignore:
--------------------------------------------------------------------------------
1 | *.un~
2 |
--------------------------------------------------------------------------------
/node_modules/zeparser/index.js:
--------------------------------------------------------------------------------
1 | exports.ZeParser = require('./ZeParser').ZeParser;
2 |
--------------------------------------------------------------------------------
/npm-debug.log.3359136013:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/npm-debug.log.3359136013
--------------------------------------------------------------------------------
/public/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/.DS_Store
--------------------------------------------------------------------------------
/public/data/temp:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/favicon.ico
--------------------------------------------------------------------------------
/public/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/public/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/public/img/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/img/back.png
--------------------------------------------------------------------------------
/public/img/back1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/img/back1.jpg
--------------------------------------------------------------------------------
/public/img/back2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/img/back2.png
--------------------------------------------------------------------------------
/public/img/background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/img/background.jpg
--------------------------------------------------------------------------------
/public/img/login-back.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/img/login-back.jpg
--------------------------------------------------------------------------------
/public/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/img/logo.png
--------------------------------------------------------------------------------
/public/img/logo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/img/logo1.png
--------------------------------------------------------------------------------
/public/img/logo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/img/logo2.png
--------------------------------------------------------------------------------
/public/sound/alert.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ParthCoder/SocioNet/0330ad939853e2973fb920ba52e1005ac1ffe542/public/sound/alert.mp3
--------------------------------------------------------------------------------
/views/welcome.ejs:
--------------------------------------------------------------------------------
1 | <% layout('layout') -%>
2 | <% block('topbar', 'Login ') -%>
3 |
4 |
--------------------------------------------------------------------------------