实例介绍
代码经过本人测试完美运行无BUG。本人开发环境:win7 64位
【实例截图】
【核心代码】
9d874029-3778-445e-abcd-666dc040f66f
├── nodejs-web
│ ├── app.js
│ ├── node_modules
│ │ ├── connect-mysql-session
│ │ │ ├── index.js
│ │ │ ├── lib
│ │ │ │ └── connect-mysql-session.js
│ │ │ ├── LICENSE
│ │ │ ├── node_modules
│ │ │ │ └── sequelize
│ │ │ │ ├── changelog.md
│ │ │ │ ├── doc
│ │ │ │ │ ├── app.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── public
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── backgrounds
│ │ │ │ │ │ │ │ ├── c04-1.jpg
│ │ │ │ │ │ │ │ ├── c04-3.jpg
│ │ │ │ │ │ │ │ └── c12-1.jpg
│ │ │ │ │ │ │ └── forkme_right_white_ffffff.png
│ │ │ │ │ │ └── stylesheets
│ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ └── style.less
│ │ │ │ │ ├── server.js
│ │ │ │ │ └── views
│ │ │ │ │ ├── index
│ │ │ │ │ │ ├── associations.ejs
│ │ │ │ │ │ ├── chain-queries.ejs
│ │ │ │ │ │ ├── code
│ │ │ │ │ │ │ ├── associations
│ │ │ │ │ │ │ │ ├── belongs-to.ejs
│ │ │ │ │ │ │ │ ├── has-many.ejs
│ │ │ │ │ │ │ │ ├── has-one.ejs
│ │ │ │ │ │ │ │ ├── has-one-example.ejs
│ │ │ │ │ │ │ │ ├── setter-and-getter.ejs
│ │ │ │ │ │ │ │ ├── single-add-remove.ejs
│ │ │ │ │ │ │ │ └── vice-versa.ejs
│ │ │ │ │ │ │ ├── chain-queries
│ │ │ │ │ │ │ │ ├── chain-queries-1.ejs
│ │ │ │ │ │ │ │ └── chain-queries-2.ejs
│ │ │ │ │ │ │ ├── expanding-models.ejs
│ │ │ │ │ │ │ ├── find-objects
│ │ │ │ │ │ │ │ ├── basics.ejs
│ │ │ │ │ │ │ │ └── options.ejs
│ │ │ │ │ │ │ ├── installation.ejs
│ │ │ │ │ │ │ ├── instances
│ │ │ │ │ │ │ │ ├── build.ejs
│ │ │ │ │ │ │ │ ├── defaults.ejs
│ │ │ │ │ │ │ │ ├── save.ejs
│ │ │ │ │ │ │ │ └── update.ejs
│ │ │ │ │ │ │ ├── sync-with-db
│ │ │ │ │ │ │ │ ├── model-sync.ejs
│ │ │ │ │ │ │ │ └── sequelize-sync.ejs
│ │ │ │ │ │ │ └── usage
│ │ │ │ │ │ │ ├── basic-mapping.ejs
│ │ │ │ │ │ │ ├── data-types.ejs
│ │ │ │ │ │ │ ├── import.ejs
│ │ │ │ │ │ │ └── options.ejs
│ │ │ │ │ │ ├── expanding-models.ejs
│ │ │ │ │ │ ├── find-objects.ejs
│ │ │ │ │ │ ├── installation.ejs
│ │ │ │ │ │ ├── instances.ejs
│ │ │ │ │ │ ├── intro.ejs
│ │ │ │ │ │ ├── projects.ejs
│ │ │ │ │ │ ├── sync-with-db.ejs
│ │ │ │ │ │ └── usage.ejs
│ │ │ │ │ ├── index.ejs
│ │ │ │ │ └── layout.ejs
│ │ │ │ ├── examples
│ │ │ │ │ ├── Associations
│ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── Count
│ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── default-values
│ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── fetch-associations
│ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── image-handling
│ │ │ │ │ │ ├── app.js
│ │ │ │ │ │ └── source.png
│ │ │ │ │ ├── method-passing
│ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── Performance
│ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── sequelize-with-options
│ │ │ │ │ │ └── app.js
│ │ │ │ │ └── using-multiple-model-files
│ │ │ │ │ ├── app.js
│ │ │ │ │ ├── Project.js
│ │ │ │ │ └── Task.js
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ └── sequelize
│ │ │ │ │ ├── associations
│ │ │ │ │ │ ├── belongs-to.js
│ │ │ │ │ │ ├── has-many-double-linked.js
│ │ │ │ │ │ ├── has-many.js
│ │ │ │ │ │ ├── has-many-single-linked.js
│ │ │ │ │ │ ├── has-one.js
│ │ │ │ │ │ └── mixin.js
│ │ │ │ │ ├── connector-manager.js
│ │ │ │ │ ├── data-types.js
│ │ │ │ │ ├── model-definition.js
│ │ │ │ │ ├── model.js
│ │ │ │ │ ├── model-manager.js
│ │ │ │ │ ├── null-emitter.js
│ │ │ │ │ ├── query-chainer.js
│ │ │ │ │ ├── query-generator.js
│ │ │ │ │ ├── query.js
│ │ │ │ │ ├── sequelize.js
│ │ │ │ │ └── utils.js
│ │ │ │ ├── LICENSE
│ │ │ │ ├── node_modules
│ │ │ │ │ ├── lingo
│ │ │ │ │ │ ├── History.md
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ ├── inflection.js
│ │ │ │ │ │ │ ├── language.js
│ │ │ │ │ │ │ ├── languages
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ └── es.js
│ │ │ │ │ │ │ └── lingo.js
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── Readme.md
│ │ │ │ │ │ ├── support
│ │ │ │ │ │ │ └── expresso
│ │ │ │ │ │ │ ├── bin
│ │ │ │ │ │ │ │ └── expresso
│ │ │ │ │ │ │ ├── docs
│ │ │ │ │ │ │ │ ├── api.html
│ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ ├── index.md
│ │ │ │ │ │ │ │ └── layout
│ │ │ │ │ │ │ │ ├── foot.html
│ │ │ │ │ │ │ │ └── head.html
│ │ │ │ │ │ │ ├── History.md
│ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ │ ├── bar.js
│ │ │ │ │ │ │ │ └── foo.js
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ ├── Readme.md
│ │ │ │ │ │ │ └── test
│ │ │ │ │ │ │ ├── assert.test.js
│ │ │ │ │ │ │ ├── async.test.js
│ │ │ │ │ │ │ ├── bar.test.js
│ │ │ │ │ │ │ ├── foo.test.js
│ │ │ │ │ │ │ ├── http.test.js
│ │ │ │ │ │ │ └── serial
│ │ │ │ │ │ │ ├── async.test.js
│ │ │ │ │ │ │ └── http.test.js
│ │ │ │ │ │ └── test
│ │ │ │ │ │ ├── inflection.en.test.js
│ │ │ │ │ │ ├── inflection.es.test.js
│ │ │ │ │ │ ├── lingo.test.js
│ │ │ │ │ │ └── translation.test.js
│ │ │ │ │ ├── mysql
│ │ │ │ │ │ ├── benchmark
│ │ │ │ │ │ │ ├── node-mysql
│ │ │ │ │ │ │ │ ├── insert.js
│ │ │ │ │ │ │ │ └── select.js
│ │ │ │ │ │ │ └── php
│ │ │ │ │ │ │ └── insert-select.php
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ ├── auth.js
│ │ │ │ │ │ │ ├── client.js
│ │ │ │ │ │ │ ├── constants.js
│ │ │ │ │ │ │ ├── mysql.js
│ │ │ │ │ │ │ ├── outgoing_packet.js
│ │ │ │ │ │ │ ├── parser.js
│ │ │ │ │ │ │ └── query.js
│ │ │ │ │ │ ├── License
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── node_modules
│ │ │ │ │ │ │ └── hashish
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── chain.js
│ │ │ │ │ │ │ │ └── map.js
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── node_modules
│ │ │ │ │ │ │ │ └── traverse
│ │ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ │ ├── json.js
│ │ │ │ │ │ │ │ │ ├── leaves.js
│ │ │ │ │ │ │ │ │ ├── negative.js
│ │ │ │ │ │ │ │ │ ├── scrub.js
│ │ │ │ │ │ │ │ │ └── stringify.js
│ │ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ ├── readme.markdown
│ │ │ │ │ │ │ │ ├── test
│ │ │ │ │ │ │ │ │ ├── circular.js
│ │ │ │ │ │ │ │ │ ├── date.js
│ │ │ │ │ │ │ │ │ ├── equal.js
│ │ │ │ │ │ │ │ │ ├── error.js
│ │ │ │ │ │ │ │ │ ├── has.js
│ │ │ │ │ │ │ │ │ ├── instance.js
│ │ │ │ │ │ │ │ │ ├── interface.js
│ │ │ │ │ │ │ │ │ ├── json.js
│ │ │ │ │ │ │ │ │ ├── keys.js
│ │ │ │ │ │ │ │ │ ├── leaves.js
│ │ │ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ │ │ │ └── deep_equal.js
│ │ │ │ │ │ │ │ │ ├── mutability.js
│ │ │ │ │ │ │ │ │ ├── negative.js
│ │ │ │ │ │ │ │ │ ├── obj.js
│ │ │ │ │ │ │ │ │ ├── siblings.js
│ │ │ │ │ │ │ │ │ ├── stop.js
│ │ │ │ │ │ │ │ │ ├── stringify.js
│ │ │ │ │ │ │ │ │ ├── subexpr.js
│ │ │ │ │ │ │ │ │ └── super_deep.js
│ │ │ │ │ │ │ │ └── testling
│ │ │ │ │ │ │ │ └── leaves.js
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ ├── README.markdown
│ │ │ │ │ │ │ └── test
│ │ │ │ │ │ │ ├── hash.js
│ │ │ │ │ │ │ └── property.js
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── Readme.md
│ │ │ │ │ │ ├── test
│ │ │ │ │ │ │ ├── common.js
│ │ │ │ │ │ │ ├── config.template.js
│ │ │ │ │ │ │ ├── fast
│ │ │ │ │ │ │ │ ├── test-client.js
│ │ │ │ │ │ │ │ └── test-mysql.js
│ │ │ │ │ │ │ ├── fixture
│ │ │ │ │ │ │ │ ├── columnia.sql
│ │ │ │ │ │ │ │ └── libmysql_password.c
│ │ │ │ │ │ │ ├── legacy
│ │ │ │ │ │ │ │ ├── common.js
│ │ │ │ │ │ │ │ └── simple
│ │ │ │ │ │ │ │ ├── test-auth.js
│ │ │ │ │ │ │ │ ├── test-client.js
│ │ │ │ │ │ │ │ ├── test-outgoing-packet.js
│ │ │ │ │ │ │ │ ├── test-parser.js
│ │ │ │ │ │ │ │ └── test-query.js
│ │ │ │ │ │ │ ├── run.js
│ │ │ │ │ │ │ └── slow
│ │ │ │ │ │ │ ├── test-client-commands.js
│ │ │ │ │ │ │ ├── test-client-connect.js
│ │ │ │ │ │ │ ├── test-client-max-connections.js
│ │ │ │ │ │ │ ├── test-client-query-column-ordering.js
│ │ │ │ │ │ │ ├── test-client-query-error-handling.js
│ │ │ │ │ │ │ └── test-client-query.js
│ │ │ │ │ │ └── tool
│ │ │ │ │ │ └── pcap-mysql.js
│ │ │ │ │ ├── underscore
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ └── underscore.js
│ │ │ │ │ └── underscore.string
│ │ │ │ │ ├── dist
│ │ │ │ │ │ └── underscore.string.min.js
│ │ │ │ │ ├── lib
│ │ │ │ │ │ └── underscore.string.js
│ │ │ │ │ ├── node_modules
│ │ │ │ │ │ └── underscore
│ │ │ │ │ │ ├── docs
│ │ │ │ │ │ │ ├── docco.css
│ │ │ │ │ │ │ └── underscore.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── Rakefile
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ ├── test
│ │ │ │ │ │ │ ├── arrays.js
│ │ │ │ │ │ │ ├── chaining.js
│ │ │ │ │ │ │ ├── collections.js
│ │ │ │ │ │ │ ├── functions.js
│ │ │ │ │ │ │ ├── objects.js
│ │ │ │ │ │ │ ├── speed.js
│ │ │ │ │ │ │ ├── temp.js
│ │ │ │ │ │ │ ├── temp_tests.html
│ │ │ │ │ │ │ ├── test.html
│ │ │ │ │ │ │ ├── utility.js
│ │ │ │ │ │ │ └── vendor
│ │ │ │ │ │ │ ├── jquery.js
│ │ │ │ │ │ │ ├── jslitmus.js
│ │ │ │ │ │ │ ├── qunit.css
│ │ │ │ │ │ │ └── qunit.js
│ │ │ │ │ │ ├── underscore.js
│ │ │ │ │ │ └── underscore-min.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── Rakefile
│ │ │ │ │ ├── README.markdown
│ │ │ │ │ └── test
│ │ │ │ │ ├── speed.js
│ │ │ │ │ ├── strings.js
│ │ │ │ │ ├── test.html
│ │ │ │ │ ├── test_underscore
│ │ │ │ │ │ ├── arrays.js
│ │ │ │ │ │ ├── chaining.js
│ │ │ │ │ │ ├── collections.js
│ │ │ │ │ │ ├── functions.js
│ │ │ │ │ │ ├── objects.js
│ │ │ │ │ │ ├── speed.js
│ │ │ │ │ │ ├── temp.js
│ │ │ │ │ │ ├── temp_tests.html
│ │ │ │ │ │ ├── test.html
│ │ │ │ │ │ └── utility.js
│ │ │ │ │ └── underscore.js
│ │ │ │ ├── package.json
│ │ │ │ ├── README.md
│ │ │ │ ├── spec
│ │ │ │ │ ├── config
│ │ │ │ │ │ ├── config.js
│ │ │ │ │ │ └── helpers.js
│ │ │ │ │ └── model-definition.spec.js
│ │ │ │ └── test
│ │ │ │ ├── config.js
│ │ │ │ ├── ConnectorManager
│ │ │ │ │ └── idle.js
│ │ │ │ ├── Model
│ │ │ │ │ ├── add-remove-association.js
│ │ │ │ │ ├── belongs-to.js
│ │ │ │ │ ├── build.js
│ │ │ │ │ ├── count.js
│ │ │ │ │ ├── create.js
│ │ │ │ │ ├── destroy.js
│ │ │ │ │ ├── equals.js
│ │ │ │ │ ├── find-findAll-all.js
│ │ │ │ │ ├── has-many.js
│ │ │ │ │ ├── has-one.js
│ │ │ │ │ ├── is-new-record.js
│ │ │ │ │ ├── mixin.js
│ │ │ │ │ ├── save.js
│ │ │ │ │ ├── sync-drop.js
│ │ │ │ │ ├── update-attributes.js
│ │ │ │ │ └── values.js
│ │ │ │ ├── project.js
│ │ │ │ ├── QueryGenerator
│ │ │ │ │ └── queries.js
│ │ │ │ ├── Sequelize
│ │ │ │ │ ├── define.js
│ │ │ │ │ ├── import.js
│ │ │ │ │ └── sync.js
│ │ │ │ └── Utils
│ │ │ │ ├── argsArePrimaryKeys.js
│ │ │ │ └── underscore.js
│ │ │ ├── package.json
│ │ │ └── README.markdown
│ │ ├── ejs
│ │ │ ├── benchmark.js
│ │ │ ├── ejs.js
│ │ │ ├── ejs.min.js
│ │ │ ├── examples
│ │ │ │ ├── client.html
│ │ │ │ ├── functions.ejs
│ │ │ │ ├── functions.js
│ │ │ │ ├── list.ejs
│ │ │ │ └── list.js
│ │ │ ├── History.md
│ │ │ ├── index.js
│ │ │ ├── lib
│ │ │ │ ├── ejs.js
│ │ │ │ ├── filters.js
│ │ │ │ └── utils.js
│ │ │ ├── Makefile
│ │ │ ├── package.json
│ │ │ ├── Readme.md
│ │ │ ├── support
│ │ │ │ └── compile.js
│ │ │ └── test
│ │ │ ├── ejs.js
│ │ │ └── fixtures
│ │ │ ├── backslash.ejs
│ │ │ ├── backslash.html
│ │ │ ├── comments.ejs
│ │ │ ├── comments.html
│ │ │ ├── double-quote.ejs
│ │ │ ├── double-quote.html
│ │ │ ├── error.ejs
│ │ │ ├── error.out
│ │ │ ├── fail.ejs
│ │ │ ├── include.css.ejs
│ │ │ ├── include.css.html
│ │ │ ├── include.ejs
│ │ │ ├── include.html
│ │ │ ├── includes
│ │ │ │ ├── menu
│ │ │ │ │ └── item.ejs
│ │ │ │ └── menu-item.ejs
│ │ │ ├── menu.ejs
│ │ │ ├── menu.html
│ │ │ ├── messed.ejs
│ │ │ ├── messed.html
│ │ │ ├── newlines.ejs
│ │ │ ├── newlines.html
│ │ │ ├── no.newlines.ejs
│ │ │ ├── no.newlines.html
│ │ │ ├── para.ejs
│ │ │ ├── pet.ejs
│ │ │ ├── single-quote.ejs
│ │ │ ├── single-quote.html
│ │ │ ├── style.css
│ │ │ └── user.ejs
│ │ ├── express
│ │ │ ├── benchmarks
│ │ │ │ ├── Makefile
│ │ │ │ ├── middleware.js
│ │ │ │ └── run
│ │ │ ├── bin
│ │ │ │ └── express
│ │ │ ├── History.md
│ │ │ ├── index.js
│ │ │ ├── lib
│ │ │ │ ├── application.js
│ │ │ │ ├── express.js
│ │ │ │ ├── middleware.js
│ │ │ │ ├── request.js
│ │ │ │ ├── response.js
│ │ │ │ ├── router
│ │ │ │ │ ├── index.js
│ │ │ │ │ └── route.js
│ │ │ │ ├── utils.js
│ │ │ │ └── view.js
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── node_modules
│ │ │ │ ├── buffer-crc32
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── tests
│ │ │ │ │ └── crc.test.js
│ │ │ │ ├── commander
│ │ │ │ │ ├── History.md
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── node_modules
│ │ │ │ │ │ └── keypress
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ └── test.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── Readme.md
│ │ │ │ ├── connect
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── lib
│ │ │ │ │ │ ├── cache.js
│ │ │ │ │ │ ├── connect.js
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── middleware
│ │ │ │ │ │ │ ├── basicAuth.js
│ │ │ │ │ │ │ ├── bodyParser.js
│ │ │ │ │ │ │ ├── compress.js
│ │ │ │ │ │ │ ├── cookieParser.js
│ │ │ │ │ │ │ ├── cookieSession.js
│ │ │ │ │ │ │ ├── csrf.js
│ │ │ │ │ │ │ ├── directory.js
│ │ │ │ │ │ │ ├── errorHandler.js
│ │ │ │ │ │ │ ├── favicon.js
│ │ │ │ │ │ │ ├── json.js
│ │ │ │ │ │ │ ├── limit.js
│ │ │ │ │ │ │ ├── logger.js
│ │ │ │ │ │ │ ├── methodOverride.js
│ │ │ │ │ │ │ ├── multipart.js
│ │ │ │ │ │ │ ├── query.js
│ │ │ │ │ │ │ ├── responseTime.js
│ │ │ │ │ │ │ ├── session
│ │ │ │ │ │ │ │ ├── cookie.js
│ │ │ │ │ │ │ │ ├── memory.js
│ │ │ │ │ │ │ │ ├── session.js
│ │ │ │ │ │ │ │ └── store.js
│ │ │ │ │ │ │ ├── session.js
│ │ │ │ │ │ │ ├── staticCache.js
│ │ │ │ │ │ │ ├── static.js
│ │ │ │ │ │ │ ├── timeout.js
│ │ │ │ │ │ │ ├── urlencoded.js
│ │ │ │ │ │ │ └── vhost.js
│ │ │ │ │ │ ├── patch.js
│ │ │ │ │ │ ├── proto.js
│ │ │ │ │ │ ├── public
│ │ │ │ │ │ │ ├── directory.html
│ │ │ │ │ │ │ ├── error.html
│ │ │ │ │ │ │ ├── favicon.ico
│ │ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ │ ├── folder.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.png
│ │ │ │ │ │ │ │ ├── page_red.png
│ │ │ │ │ │ │ │ ├── page_refresh.png
│ │ │ │ │ │ │ │ ├── page_save.png
│ │ │ │ │ │ │ │ ├── page_white_acrobat.png
│ │ │ │ │ │ │ │ ├── page_white_actionscript.png
│ │ │ │ │ │ │ │ ├── page_white_add.png
│ │ │ │ │ │ │ │ ├── page_white_camera.png
│ │ │ │ │ │ │ │ ├── page_white_cd.png
│ │ │ │ │ │ │ │ ├── page_white_code.png
│ │ │ │ │ │ │ │ ├── page_white_code_red.png
│ │ │ │ │ │ │ │ ├── page_white_coldfusion.png
│ │ │ │ │ │ │ │ ├── page_white_compressed.png
│ │ │ │ │ │ │ │ ├── page_white_copy.png
│ │ │ │ │ │ │ │ ├── page_white_cplusplus.png
│ │ │ │ │ │ │ │ ├── page_white_c.png
│ │ │ │ │ │ │ │ ├── page_white_csharp.png
│ │ │ │ │ │ │ │ ├── page_white_cup.png
│ │ │ │ │ │ │ │ ├── page_white_database.png
│ │ │ │ │ │ │ │ ├── page_white_delete.png
│ │ │ │ │ │ │ │ ├── page_white_dvd.png
│ │ │ │ │ │ │ │ ├── page_white_edit.png
│ │ │ │ │ │ │ │ ├── page_white_error.png
│ │ │ │ │ │ │ │ ├── page_white_excel.png
│ │ │ │ │ │ │ │ ├── page_white_find.png
│ │ │ │ │ │ │ │ ├── page_white_flash.png
│ │ │ │ │ │ │ │ ├── page_white_freehand.png
│ │ │ │ │ │ │ │ ├── page_white_gear.png
│ │ │ │ │ │ │ │ ├── page_white_get.png
│ │ │ │ │ │ │ │ ├── page_white_go.png
│ │ │ │ │ │ │ │ ├── page_white_horizontal.png
│ │ │ │ │ │ │ │ ├── page_white_h.png
│ │ │ │ │ │ │ │ ├── page_white_key.png
│ │ │ │ │ │ │ │ ├── page_white_lightning.png
│ │ │ │ │ │ │ │ ├── page_white_link.png
│ │ │ │ │ │ │ │ ├── page_white_magnify.png
│ │ │ │ │ │ │ │ ├── page_white_medal.png
│ │ │ │ │ │ │ │ ├── page_white_office.png
│ │ │ │ │ │ │ │ ├── page_white_paintbrush.png
│ │ │ │ │ │ │ │ ├── page_white_paint.png
│ │ │ │ │ │ │ │ ├── page_white_paste.png
│ │ │ │ │ │ │ │ ├── page_white_php.png
│ │ │ │ │ │ │ │ ├── page_white_picture.png
│ │ │ │ │ │ │ │ ├── page_white.png
│ │ │ │ │ │ │ │ ├── page_white_powerpoint.png
│ │ │ │ │ │ │ │ ├── page_white_put.png
│ │ │ │ │ │ │ │ ├── page_white_ruby.png
│ │ │ │ │ │ │ │ ├── page_white_stack.png
│ │ │ │ │ │ │ │ ├── page_white_star.png
│ │ │ │ │ │ │ │ ├── page_white_swoosh.png
│ │ │ │ │ │ │ │ ├── page_white_text.png
│ │ │ │ │ │ │ │ ├── page_white_text_width.png
│ │ │ │ │ │ │ │ ├── page_white_tux.png
│ │ │ │ │ │ │ │ ├── page_white_vector.png
│ │ │ │ │ │ │ │ ├── page_white_visualstudio.png
│ │ │ │ │ │ │ │ ├── page_white_width.png
│ │ │ │ │ │ │ │ ├── page_white_word.png
│ │ │ │ │ │ │ │ ├── page_white_world.png
│ │ │ │ │ │ │ │ ├── page_white_wrench.png
│ │ │ │ │ │ │ │ ├── page_white_zip.png
│ │ │ │ │ │ │ │ ├── page_word.png
│ │ │ │ │ │ │ │ └── page_world.png
│ │ │ │ │ │ │ └── style.css
│ │ │ │ │ │ └── utils.js
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── node_modules
│ │ │ │ │ │ ├── batch
│ │ │ │ │ │ │ ├── component.json
│ │ │ │ │ │ │ ├── History.md
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ └── Readme.md
│ │ │ │ │ │ ├── bytes
│ │ │ │ │ │ │ ├── component.json
│ │ │ │ │ │ │ ├── History.md
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ └── Readme.md
│ │ │ │ │ │ ├── multiparty
│ │ │ │ │ │ │ ├── CHANGELOG.md
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── azureblobstorage.js
│ │ │ │ │ │ │ │ ├── s3.js
│ │ │ │ │ │ │ │ └── upload.js
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ ├── node_modules
│ │ │ │ │ │ │ │ ├── readable-stream
│ │ │ │ │ │ │ │ │ ├── duplex.js
│ │ │ │ │ │ │ │ │ ├── float.patch
│ │ │ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ │ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ │ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ │ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ │ │ │ │ │ └── _stream_writable.js
│ │ │ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ │ │ ├── node_modules
│ │ │ │ │ │ │ │ │ │ ├── core-util-is
│ │ │ │ │ │ │ │ │ │ │ ├── float.patch
│ │ │ │ │ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ │ │ │ │ │ └── util.js
│ │ │ │ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ │ │ │ │ │ └── util.js
│ │ │ │ │ │ │ │ │ │ ├── debuglog
│ │ │ │ │ │ │ │ │ │ │ ├── debuglog.js
│ │ │ │ │ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ │ │ │ │ └── string_decoder
│ │ │ │ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ │ ├── passthrough.js
│ │ │ │ │ │ │ │ │ ├── readable.js
│ │ │ │ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ │ │ │ ├── transform.js
│ │ │ │ │ │ │ │ │ └── writable.js
│ │ │ │ │ │ │ │ └── stream-counter
│ │ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ │ │ └── test
│ │ │ │ │ │ │ │ ├── test.js
│ │ │ │ │ │ │ │ └── test.txt
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ │ └── test
│ │ │ │ │ │ │ ├── bench-multipart-parser.js
│ │ │ │ │ │ │ ├── fixture
│ │ │ │ │ │ │ │ ├── file
│ │ │ │ │ │ │ │ │ ├── beta-sticker-1.png
│ │ │ │ │ │ │ │ │ ├── binaryfile.tar.gz
│ │ │ │ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ │ │ │ ├── funkyfilename.txt
│ │ │ │ │ │ │ │ │ ├── menu_separator.png
│ │ │ │ │ │ │ │ │ ├── pf1y5.png
│ │ │ │ │ │ │ │ │ └── plain.txt
│ │ │ │ │ │ │ │ ├── http
│ │ │ │ │ │ │ │ │ ├── encoding
│ │ │ │ │ │ │ │ │ │ ├── beta-sticker-1.png.http
│ │ │ │ │ │ │ │ │ │ ├── binaryfile.tar.gz.http
│ │ │ │ │ │ │ │ │ │ ├── blank.gif.http
│ │ │ │ │ │ │ │ │ │ ├── menu_seperator.png.http
│ │ │ │ │ │ │ │ │ │ ├── pf1y5.png.http
│ │ │ │ │ │ │ │ │ │ └── plain.txt.http
│ │ │ │ │ │ │ │ │ ├── no-filename
│ │ │ │ │ │ │ │ │ │ ├── filename-name.http
│ │ │ │ │ │ │ │ │ │ └── generic.http
│ │ │ │ │ │ │ │ │ ├── preamble
│ │ │ │ │ │ │ │ │ │ ├── crlf.http
│ │ │ │ │ │ │ │ │ │ └── preamble.http
│ │ │ │ │ │ │ │ │ ├── special-chars-in-filename
│ │ │ │ │ │ │ │ │ │ ├── info.md
│ │ │ │ │ │ │ │ │ │ ├── osx-chrome-13.http
│ │ │ │ │ │ │ │ │ │ ├── osx-firefox-3.6.http
│ │ │ │ │ │ │ │ │ │ ├── osx-safari-5.http
│ │ │ │ │ │ │ │ │ │ ├── xp-chrome-12.http
│ │ │ │ │ │ │ │ │ │ ├── xp-ie-7.http
│ │ │ │ │ │ │ │ │ │ ├── xp-ie-8.http
│ │ │ │ │ │ │ │ │ │ └── xp-safari-5.http
│ │ │ │ │ │ │ │ │ └── workarounds
│ │ │ │ │ │ │ │ │ ├── missing-hyphens1.http
│ │ │ │ │ │ │ │ │ └── missing-hyphens2.http
│ │ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ │ ├── encoding.js
│ │ │ │ │ │ │ │ │ ├── no-filename.js
│ │ │ │ │ │ │ │ │ ├── preamble.js
│ │ │ │ │ │ │ │ │ ├── special-chars-in-filename.js
│ │ │ │ │ │ │ │ │ └── workarounds.js
│ │ │ │ │ │ │ │ ├── multipart.js
│ │ │ │ │ │ │ │ └── multi_video.upload
│ │ │ │ │ │ │ ├── record.js
│ │ │ │ │ │ │ ├── standalone
│ │ │ │ │ │ │ │ ├── test-connection-aborted.js
│ │ │ │ │ │ │ │ ├── test-content-transfer-encoding.js
│ │ │ │ │ │ │ │ ├── test-invalid.js
│ │ │ │ │ │ │ │ ├── test-issue-15.js
│ │ │ │ │ │ │ │ ├── test-issue-19.js
│ │ │ │ │ │ │ │ ├── test-issue-21.js
│ │ │ │ │ │ │ │ ├── test-issue-46.js
│ │ │ │ │ │ │ │ ├── test-issue-4.js
│ │ │ │ │ │ │ │ └── test-issue-5.js
│ │ │ │ │ │ │ └── test.js
│ │ │ │ │ │ ├── negotiator
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── accept.js
│ │ │ │ │ │ │ │ ├── charset.js
│ │ │ │ │ │ │ │ ├── encoding.js
│ │ │ │ │ │ │ │ └── language.js
│ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ │ ├── charset.js
│ │ │ │ │ │ │ │ ├── encoding.js
│ │ │ │ │ │ │ │ ├── language.js
│ │ │ │ │ │ │ │ ├── mediaType.js
│ │ │ │ │ │ │ │ └── negotiator.js
│ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ ├── readme.md
│ │ │ │ │ │ │ └── test
│ │ │ │ │ │ │ ├── charset.js
│ │ │ │ │ │ │ ├── encoding.js
│ │ │ │ │ │ │ ├── language.js
│ │ │ │ │ │ │ └── mediaType.js
│ │ │ │ │ │ ├── pause
│ │ │ │ │ │ │ ├── History.md
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ └── Readme.md
│ │ │ │ │ │ ├── qs
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ └── Readme.md
│ │ │ │ │ │ ├── raw-body
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ └── uid2
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ └── package.json
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── Readme.md
│ │ │ │ ├── cookie
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── test
│ │ │ │ │ ├── mocha.opts
│ │ │ │ │ ├── parse.js
│ │ │ │ │ └── serialize.js
│ │ │ │ ├── cookie-signature
│ │ │ │ │ ├── History.md
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── Readme.md
│ │ │ │ ├── debug
│ │ │ │ │ ├── debug.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── lib
│ │ │ │ │ │ └── debug.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── Readme.md
│ │ │ │ ├── fresh
│ │ │ │ │ ├── History.md
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── Readme.md
│ │ │ │ ├── merge-descriptors
│ │ │ │ │ ├── component.json
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── README.md
│ │ │ │ ├── methods
│ │ │ │ │ ├── History.md
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── Readme.md
│ │ │ │ ├── mkdirp
│ │ │ │ │ ├── examples
│ │ │ │ │ │ └── pow.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── readme.markdown
│ │ │ │ │ └── test
│ │ │ │ │ ├── chmod.js
│ │ │ │ │ ├── clobber.js
│ │ │ │ │ ├── mkdirp.js
│ │ │ │ │ ├── perm.js
│ │ │ │ │ ├── perm_sync.js
│ │ │ │ │ ├── race.js
│ │ │ │ │ ├── rel.js
│ │ │ │ │ ├── return.js
│ │ │ │ │ ├── return_sync.js
│ │ │ │ │ ├── root.js
│ │ │ │ │ ├── sync.js
│ │ │ │ │ ├── umask.js
│ │ │ │ │ └── umask_sync.js
│ │ │ │ ├── range-parser
│ │ │ │ │ ├── History.md
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── package.json
│ │ │ │ │ └── Readme.md
│ │ │ │ └── send
│ │ │ │ ├── History.md
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── send.js
│ │ │ │ │ └── utils.js
│ │ │ │ ├── Makefile
│ │ │ │ ├── node_modules
│ │ │ │ │ └── mime
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── mime.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── test.js
│ │ │ │ │ └── types
│ │ │ │ │ ├── mime.types
│ │ │ │ │ └── node.types
│ │ │ │ ├── package.json
│ │ │ │ └── Readme.md
│ │ │ ├── package.json
│ │ │ └── Readme.md
│ │ ├── mysql
│ │ │ ├── benchmark
│ │ │ │ ├── analyze.js
│ │ │ │ ├── parse-100k-blog-rows.js
│ │ │ │ └── select-100k-blog-rows.js
│ │ │ ├── Changes.md
│ │ │ ├── index.js
│ │ │ ├── lib
│ │ │ │ ├── ConnectionConfig.js
│ │ │ │ ├── Connection.js
│ │ │ │ ├── PoolCluster.js
│ │ │ │ ├── PoolConfig.js
│ │ │ │ ├── PoolConnection.js
│ │ │ │ ├── Pool.js
│ │ │ │ └── protocol
│ │ │ │ ├── Auth.js
│ │ │ │ ├── constants
│ │ │ │ │ ├── charsets.js
│ │ │ │ │ ├── client.js
│ │ │ │ │ ├── errors.js
│ │ │ │ │ ├── field_flags.js
│ │ │ │ │ ├── server_status.js
│ │ │ │ │ └── types.js
│ │ │ │ ├── PacketHeader.js
│ │ │ │ ├── packets
│ │ │ │ │ ├── ClientAuthenticationPacket.js
│ │ │ │ │ ├── ComChangeUserPacket.js
│ │ │ │ │ ├── ComPingPacket.js
│ │ │ │ │ ├── ComQueryPacket.js
│ │ │ │ │ ├── ComQuitPacket.js
│ │ │ │ │ ├── ComStatisticsPacket.js
│ │ │ │ │ ├── EmptyPacket.js
│ │ │ │ │ ├── EofPacket.js
│ │ │ │ │ ├── ErrorPacket.js
│ │ │ │ │ ├── Field.js
│ │ │ │ │ ├── FieldPacket.js
│ │ │ │ │ ├── HandshakeInitializationPacket.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── LocalDataFilePacket.js
│ │ │ │ │ ├── OkPacket.js
│ │ │ │ │ ├── OldPasswordPacket.js
│ │ │ │ │ ├── ResultSetHeaderPacket.js
│ │ │ │ │ ├── RowDataPacket.js
│ │ │ │ │ ├── StatisticsPacket.js
│ │ │ │ │ └── UseOldPasswordPacket.js
│ │ │ │ ├── PacketWriter.js
│ │ │ │ ├── Parser.js
│ │ │ │ ├── Protocol.js
│ │ │ │ ├── ResultSet.js
│ │ │ │ ├── sequences
│ │ │ │ │ ├── ChangeUser.js
│ │ │ │ │ ├── Handshake.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── Ping.js
│ │ │ │ │ ├── Query.js
│ │ │ │ │ ├── Quit.js
│ │ │ │ │ ├── Sequence.js
│ │ │ │ │ └── Statistics.js
│ │ │ │ └── SqlString.js
│ │ │ ├── License
│ │ │ ├── make.bat
│ │ │ ├── Makefile
│ │ │ ├── node_modules
│ │ │ │ ├── bignumber.js
│ │ │ │ │ ├── bignumber.js
│ │ │ │ │ ├── bignumber.min.js
│ │ │ │ │ ├── doc
│ │ │ │ │ │ └── API.html
│ │ │ │ │ ├── LICENCE
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── perf
│ │ │ │ │ │ ├── bignumber-vs-bigdecimal.html
│ │ │ │ │ │ ├── bigtime.js
│ │ │ │ │ │ ├── bigtime-OOM.js
│ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ ├── bigdecimal_GWT
│ │ │ │ │ │ │ │ ├── bigdecimal.js
│ │ │ │ │ │ │ │ ├── BigDecTest.class
│ │ │ │ │ │ │ │ ├── BigDecTest.java
│ │ │ │ │ │ │ │ ├── bugs.js
│ │ │ │ │ │ │ │ └── LICENCE.txt
│ │ │ │ │ │ │ └── bigdecimal_ICU4J
│ │ │ │ │ │ │ ├── BigDecimal-all-last.js
│ │ │ │ │ │ │ ├── BigDecimal-all-last.min.js
│ │ │ │ │ │ │ └── LICENCE.txt
│ │ │ │ │ │ └── README.txt
│ │ │ │ │ ├── README.md
│ │ │ │ │ └── test
│ │ │ │ │ ├── abs.js
│ │ │ │ │ ├── base-in.js
│ │ │ │ │ ├── base-out.js
│ │ │ │ │ ├── browser
│ │ │ │ │ │ ├── bignumber-vs-number.html
│ │ │ │ │ │ ├── console-errors.html
│ │ │ │ │ │ ├── every-test.html
│ │ │ │ │ │ ├── quick-test.html
│ │ │ │ │ │ └── single-test.html
│ │ │ │ │ ├── ceil.js
│ │ │ │ │ ├── cmp.js
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── div.js
│ │ │ │ │ ├── every-test.js
│ │ │ │ │ ├── floor.js
│ │ │ │ │ ├── minus.js
│ │ │ │ │ ├── mod.js
│ │ │ │ │ ├── neg.js
│ │ │ │ │ ├── others.js
│ │ │ │ │ ├── plus.js
│ │ │ │ │ ├── pow.js
│ │ │ │ │ ├── quick-test.js
│ │ │ │ │ ├── round.js
│ │ │ │ │ ├── sqrt.js
│ │ │ │ │ ├── times.js
│ │ │ │ │ ├── toExponential.js
│ │ │ │ │ ├── toFixed.js
│ │ │ │ │ ├── toFraction.js
│ │ │ │ │ ├── toPrecision.js
│ │ │ │ │ ├── toString.js
│ │ │ │ │ └── v8-LICENCE.txt
│ │ │ │ └── require-all
│ │ │ │ ├── index.js
│ │ │ │ ├── package.json
│ │ │ │ ├── Readme.md
│ │ │ │ └── test
│ │ │ │ ├── controllers
│ │ │ │ │ ├── main-Controller.js
│ │ │ │ │ ├── notthis.js
│ │ │ │ │ └── other-Controller.js
│ │ │ │ ├── mydir
│ │ │ │ │ ├── foo.js
│ │ │ │ │ ├── hello.js
│ │ │ │ │ └── sub
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── no.2js
│ │ │ │ │ └── yes.js
│ │ │ │ └── test.js
│ │ │ ├── package.json
│ │ │ ├── Readme.md
│ │ │ ├── test
│ │ │ │ ├── common.js
│ │ │ │ ├── FakeServer.js
│ │ │ │ ├── fixtures
│ │ │ │ │ └── data.csv
│ │ │ │ ├── integration
│ │ │ │ │ ├── connection
│ │ │ │ │ │ ├── test-bad-credentials.js
│ │ │ │ │ │ ├── test-bulk-insert.js
│ │ │ │ │ │ ├── test-callback-errors-are-not-caught.js
│ │ │ │ │ │ ├── test-change-user-fatal-error.js
│ │ │ │ │ │ ├── test-change-user.js
│ │ │ │ │ │ ├── test-connection-config-flags-affected-rows.js
│ │ │ │ │ │ ├── test-connection-config-flags.js
│ │ │ │ │ │ ├── test-connection-destroy.js
│ │ │ │ │ │ ├── test-custom-query-format.js
│ │ │ │ │ │ ├── test-custom-typecast.js
│ │ │ │ │ │ ├── test-destroy-while-streaming-rows.js
│ │ │ │ │ │ ├── test-double-connect.js
│ │ │ │ │ │ ├── test-drain-event.js
│ │ │ │ │ │ ├── test-end-callback.js
│ │ │ │ │ │ ├── test-escape-id.js
│ │ │ │ │ │ ├── test-exception-safety.js
│ │ │ │ │ │ ├── test-fatal-auth-error-going-to-all-callbacks.js
│ │ │ │ │ │ ├── test-fatal-auth-error-without-handlers.js
│ │ │ │ │ │ ├── test-fatal-network-error-going-to-all-callbacks.js
│ │ │ │ │ │ ├── test-fatal-network-error-without-handlers.js
│ │ │ │ │ │ ├── test-fatal-query-error-without-callback.js
│ │ │ │ │ │ ├── test-host-denied-error.js
│ │ │ │ │ │ ├── test-implicit-connect.js
│ │ │ │ │ │ ├── test-insert-results.js
│ │ │ │ │ │ ├── test-load-data-infile.js
│ │ │ │ │ │ ├── test-long-stack-traces-for-connection-errors.js
│ │ │ │ │ │ ├── test-long-stack-traces.js
│ │ │ │ │ │ ├── test-multiple-statements.js
│ │ │ │ │ │ ├── test-multiple-statements-streaming.js
│ │ │ │ │ │ ├── test-multiple-statements-with-error.js
│ │ │ │ │ │ ├── test-nested-tables-query.js
│ │ │ │ │ │ ├── test-normal-error-without-handler.js
│ │ │ │ │ │ ├── test-normal-query-error-without-callback.js
│ │ │ │ │ │ ├── test-old-password.js
│ │ │ │ │ │ ├── test-ping.js
│ │ │ │ │ │ ├── test-procedure-with-multiple-selects.js
│ │ │ │ │ │ ├── test-procedure-with-single-select.js
│ │ │ │ │ │ ├── test-query-after-destroy.js
│ │ │ │ │ │ ├── test-query-after-end.js
│ │ │ │ │ │ ├── test-query-after-end-without-callback.js
│ │ │ │ │ │ ├── test-query-dates-as-strings.js
│ │ │ │ │ │ ├── test-query-escape-id.js
│ │ │ │ │ │ ├── test-query-escaping.js
│ │ │ │ │ │ ├── test-select-1.js
│ │ │ │ │ │ ├── test-select-empty-string.js
│ │ │ │ │ │ ├── test-send-and-receive-large-packets.js
│ │ │ │ │ │ ├── test-server-timeout-disconnect.js
│ │ │ │ │ │ ├── test-server-unexpected-disconnect.js
│ │ │ │ │ │ ├── test-statistics.js
│ │ │ │ │ │ ├── test-streaming-rows.js
│ │ │ │ │ │ ├── test-streaming-rows-quick-pause-resume.js
│ │ │ │ │ │ ├── test-timezones.js
│ │ │ │ │ │ ├── test-transaction-commit.js
│ │ │ │ │ │ ├── test-transaction-rollback.js
│ │ │ │ │ │ ├── test-type-casting.js
│ │ │ │ │ │ ├── test-type-cast-null-fields.js
│ │ │ │ │ │ ├── test-type-cast-query.js
│ │ │ │ │ │ ├── test-unix-domain-socket.js
│ │ │ │ │ │ └── test-zerofill-results.js
│ │ │ │ │ └── pool
│ │ │ │ │ ├── test-cluster.js
│ │ │ │ │ ├── test-connection-event.js
│ │ │ │ │ ├── test-connection-limit.js
│ │ │ │ │ ├── test-destroy-connection.js
│ │ │ │ │ ├── test-end-empty.js
│ │ │ │ │ ├── test-get-connection.js
│ │ │ │ │ ├── test-pool-connection.js
│ │ │ │ │ ├── test-pool-escape.js
│ │ │ │ │ ├── test-query.js
│ │ │ │ │ └── test-queue-limit.js
│ │ │ │ ├── run.js
│ │ │ │ └── unit
│ │ │ │ ├── protocol
│ │ │ │ │ ├── test-Parser.js
│ │ │ │ │ └── test-SqlString.js
│ │ │ │ └── test-ConnectionConfig.js
│ │ │ └── tool
│ │ │ └── generate-error-constants.js
│ │ └── node-mysql
│ │ ├── lib
│ │ │ ├── db.js
│ │ │ ├── model.js
│ │ │ └── node-mysql.js
│ │ ├── LICENSE
│ │ ├── node_modules
│ │ │ ├── better-js-class
│ │ │ │ ├── lib
│ │ │ │ │ └── class.js
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ └── README.md
│ │ │ ├── cps
│ │ │ │ ├── lib
│ │ │ │ │ └── cps.js
│ │ │ │ ├── LICENSE
│ │ │ │ ├── package.json
│ │ │ │ ├── README.md
│ │ │ │ └── test
│ │ │ │ └── test.js
│ │ │ ├── mysql
│ │ │ │ ├── Changes.md
│ │ │ │ ├── fixtures
│ │ │ │ │ └── ssl-profiles.json
│ │ │ │ ├── index.js
│ │ │ │ ├── lib
│ │ │ │ │ ├── ConnectionConfig.js
│ │ │ │ │ ├── Connection.js
│ │ │ │ │ ├── PoolCluster.js
│ │ │ │ │ ├── PoolConfig.js
│ │ │ │ │ ├── PoolConnection.js
│ │ │ │ │ ├── Pool.js
│ │ │ │ │ └── protocol
│ │ │ │ │ ├── Auth.js
│ │ │ │ │ ├── constants
│ │ │ │ │ │ ├── charsets.js
│ │ │ │ │ │ ├── client.js
│ │ │ │ │ │ ├── errors.js
│ │ │ │ │ │ ├── field_flags.js
│ │ │ │ │ │ ├── server_status.js
│ │ │ │ │ │ └── types.js
│ │ │ │ │ ├── PacketHeader.js
│ │ │ │ │ ├── packets
│ │ │ │ │ │ ├── ClientAuthenticationPacket.js
│ │ │ │ │ │ ├── ComChangeUserPacket.js
│ │ │ │ │ │ ├── ComPingPacket.js
│ │ │ │ │ │ ├── ComQueryPacket.js
│ │ │ │ │ │ ├── ComQuitPacket.js
│ │ │ │ │ │ ├── ComStatisticsPacket.js
│ │ │ │ │ │ ├── EmptyPacket.js
│ │ │ │ │ │ ├── EofPacket.js
│ │ │ │ │ │ ├── ErrorPacket.js
│ │ │ │ │ │ ├── Field.js
│ │ │ │ │ │ ├── FieldPacket.js
│ │ │ │ │ │ ├── HandshakeInitializationPacket.js
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── LocalDataFilePacket.js
│ │ │ │ │ │ ├── OkPacket.js
│ │ │ │ │ │ ├── OldPasswordPacket.js
│ │ │ │ │ │ ├── ResultSetHeaderPacket.js
│ │ │ │ │ │ ├── RowDataPacket.js
│ │ │ │ │ │ ├── SSLRequestPacket.js
│ │ │ │ │ │ ├── StatisticsPacket.js
│ │ │ │ │ │ └── UseOldPasswordPacket.js
│ │ │ │ │ ├── PacketWriter.js
│ │ │ │ │ ├── Parser.js
│ │ │ │ │ ├── Protocol.js
│ │ │ │ │ ├── ResultSet.js
│ │ │ │ │ ├── sequences
│ │ │ │ │ │ ├── ChangeUser.js
│ │ │ │ │ │ ├── Handshake.js
│ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ ├── Ping.js
│ │ │ │ │ │ ├── Query.js
│ │ │ │ │ │ ├── Quit.js
│ │ │ │ │ │ ├── Sequence.js
│ │ │ │ │ │ └── Statistics.js
│ │ │ │ │ └── SqlString.js
│ │ │ │ ├── License
│ │ │ │ ├── make.bat
│ │ │ │ ├── Makefile
│ │ │ │ ├── node_modules
│ │ │ │ │ ├── bignumber.js
│ │ │ │ │ │ ├── bignumber.js
│ │ │ │ │ │ ├── bignumber.min.js
│ │ │ │ │ │ ├── doc
│ │ │ │ │ │ │ └── API.html
│ │ │ │ │ │ ├── LICENCE
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── perf
│ │ │ │ │ │ │ ├── bignumber-vs-bigdecimal.html
│ │ │ │ │ │ │ ├── bigtime.js
│ │ │ │ │ │ │ ├── bigtime-OOM.js
│ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ │ ├── bigdecimal_GWT
│ │ │ │ │ │ │ │ │ ├── bigdecimal.js
│ │ │ │ │ │ │ │ │ ├── BigDecTest.class
│ │ │ │ │ │ │ │ │ ├── BigDecTest.java
│ │ │ │ │ │ │ │ │ ├── bugs.js
│ │ │ │ │ │ │ │ │ └── LICENCE.txt
│ │ │ │ │ │ │ │ └── bigdecimal_ICU4J
│ │ │ │ │ │ │ │ ├── BigDecimal-all-last.js
│ │ │ │ │ │ │ │ ├── BigDecimal-all-last.min.js
│ │ │ │ │ │ │ │ └── LICENCE.txt
│ │ │ │ │ │ │ └── README.txt
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ └── test
│ │ │ │ │ │ ├── abs.js
│ │ │ │ │ │ ├── base-in.js
│ │ │ │ │ │ ├── base-out.js
│ │ │ │ │ │ ├── browser
│ │ │ │ │ │ │ ├── bignumber-vs-number.html
│ │ │ │ │ │ │ ├── console-errors.html
│ │ │ │ │ │ │ ├── every-test.html
│ │ │ │ │ │ │ ├── quick-test.html
│ │ │ │ │ │ │ └── single-test.html
│ │ │ │ │ │ ├── ceil.js
│ │ │ │ │ │ ├── cmp.js
│ │ │ │ │ │ ├── config.js
│ │ │ │ │ │ ├── div.js
│ │ │ │ │ │ ├── every-test.js
│ │ │ │ │ │ ├── floor.js
│ │ │ │ │ │ ├── minus.js
│ │ │ │ │ │ ├── mod.js
│ │ │ │ │ │ ├── neg.js
│ │ │ │ │ │ ├── others.js
│ │ │ │ │ │ ├── plus.js
│ │ │ │ │ │ ├── pow.js
│ │ │ │ │ │ ├── quick-test.js
│ │ │ │ │ │ ├── round.js
│ │ │ │ │ │ ├── sqrt.js
│ │ │ │ │ │ ├── times.js
│ │ │ │ │ │ ├── toExponential.js
│ │ │ │ │ │ ├── toFixed.js
│ │ │ │ │ │ ├── toFraction.js
│ │ │ │ │ │ ├── toPrecision.js
│ │ │ │ │ │ ├── toString.js
│ │ │ │ │ │ └── v8-LICENCE.txt
│ │ │ │ │ ├── readable-stream
│ │ │ │ │ │ ├── duplex.js
│ │ │ │ │ │ ├── float.patch
│ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ ├── _stream_duplex.js
│ │ │ │ │ │ │ ├── _stream_passthrough.js
│ │ │ │ │ │ │ ├── _stream_readable.js
│ │ │ │ │ │ │ ├── _stream_transform.js
│ │ │ │ │ │ │ └── _stream_writable.js
│ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ ├── node_modules
│ │ │ │ │ │ │ ├── core-util-is
│ │ │ │ │ │ │ │ ├── float.patch
│ │ │ │ │ │ │ │ ├── lib
│ │ │ │ │ │ │ │ │ └── util.js
│ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ │ │ └── util.js
│ │ │ │ │ │ │ ├── debuglog
│ │ │ │ │ │ │ │ ├── debuglog.js
│ │ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ │ └── string_decoder
│ │ │ │ │ │ │ ├── index.js
│ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ ├── package.json
│ │ │ │ │ │ ├── passthrough.js
│ │ │ │ │ │ ├── readable.js
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── transform.js
│ │ │ │ │ │ └── writable.js
│ │ │ │ │ └── require-all
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── Readme.md
│ │ │ │ │ └── test
│ │ │ │ │ ├── controllers
│ │ │ │ │ │ ├── main-Controller.js
│ │ │ │ │ │ ├── notthis.js
│ │ │ │ │ │ └── other-Controller.js
│ │ │ │ │ ├── mydir
│ │ │ │ │ │ ├── foo.js
│ │ │ │ │ │ ├── hello.js
│ │ │ │ │ │ └── sub
│ │ │ │ │ │ ├── config.json
│ │ │ │ │ │ ├── no.2js
│ │ │ │ │ │ └── yes.js
│ │ │ │ │ └── test.js
│ │ │ │ ├── package.json
│ │ │ │ ├── Readme.md
│ │ │ │ └── tool
│ │ │ │ └── generate-error-constants.js
│ │ │ └── underscore
│ │ │ ├── LICENSE
│ │ │ ├── package.json
│ │ │ ├── README.md
│ │ │ ├── underscore.js
│ │ │ └── underscore-min.js
│ │ ├── package.json
│ │ ├── README.md
│ │ └── test
│ │ ├── example_model.js
│ │ └── test.js
│ ├── npm
│ ├── package.json
│ ├── public
│ │ ├── images
│ │ │ └── favicon.ico
│ │ ├── javascripts
│ │ │ ├── bootstrap.min.js
│ │ │ └── jquery.js
│ │ └── stylesheets
│ │ ├── bootstrap.min.css
│ │ └── style.css
│ ├── routes
│ │ ├── index.js
│ │ └── user.js
│ └── views
│ ├── layout.html
│ ├── login.html
│ └── main.html
└── 首先读我.txt
237 directories, 1034 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论