Showing
606 changed files
with
4827 additions
and
0 deletions
app.js
0 → 100644
1 | +var express = require('express') | ||
2 | +var bodyParser = require('body-parser') | ||
3 | +var app = express() | ||
4 | +var router = require('./router/index') | ||
5 | + | ||
6 | +//패스포트 관련 모듈들 | ||
7 | +var passport = require('passport') | ||
8 | +var LocalStrategy = require('passport-local').Strategy; | ||
9 | +var session = require('express-session') | ||
10 | +var flash = require('connect-flash') | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | +app.listen(3000, function () { | ||
16 | + console.log('start! express server') | ||
17 | + | ||
18 | +}) | ||
19 | + | ||
20 | +//static으로 요청했을때 바로 받아볼수있다. | ||
21 | +app.use(express.static('public')) | ||
22 | +app.use(express.static('views')) | ||
23 | + | ||
24 | + | ||
25 | +//express 서버에 body Parser 쓰다고 알려야함. | ||
26 | +app.use(bodyParser.json()) | ||
27 | +app.use(bodyParser.urlencoded({extended: true})) | ||
28 | + | ||
29 | +//view 엔진 사용 | ||
30 | +app.set('view engine', 'ejs') | ||
31 | + | ||
32 | + | ||
33 | +app.use(session({ | ||
34 | + secret: 'keyboard cat', | ||
35 | + resave: false, | ||
36 | + saveUninitialized: true | ||
37 | +})) | ||
38 | +app.use(passport.initialize()) | ||
39 | +app.use(passport.session()) | ||
40 | +app.use(flash()) | ||
41 | + | ||
42 | +app.use(router) |
node_modules/.bin/mime
0 → 100644
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/../mime/cli.js" "$@" | ||
10 | + ret=$? | ||
11 | +else | ||
12 | + node "$basedir/../mime/cli.js" "$@" | ||
13 | + ret=$? | ||
14 | +fi | ||
15 | +exit $ret |
node_modules/.bin/mime.cmd
0 → 100644
node_modules/accepts/HISTORY.md
0 → 100644
1 | +1.3.4 / 2017-08-22 | ||
2 | +================== | ||
3 | + | ||
4 | + * deps: mime-types@~2.1.16 | ||
5 | + - deps: mime-db@~1.29.0 | ||
6 | + | ||
7 | +1.3.3 / 2016-05-02 | ||
8 | +================== | ||
9 | + | ||
10 | + * deps: mime-types@~2.1.11 | ||
11 | + - deps: mime-db@~1.23.0 | ||
12 | + * deps: negotiator@0.6.1 | ||
13 | + - perf: improve `Accept` parsing speed | ||
14 | + - perf: improve `Accept-Charset` parsing speed | ||
15 | + - perf: improve `Accept-Encoding` parsing speed | ||
16 | + - perf: improve `Accept-Language` parsing speed | ||
17 | + | ||
18 | +1.3.2 / 2016-03-08 | ||
19 | +================== | ||
20 | + | ||
21 | + * deps: mime-types@~2.1.10 | ||
22 | + - Fix extension of `application/dash+xml` | ||
23 | + - Update primary extension for `audio/mp4` | ||
24 | + - deps: mime-db@~1.22.0 | ||
25 | + | ||
26 | +1.3.1 / 2016-01-19 | ||
27 | +================== | ||
28 | + | ||
29 | + * deps: mime-types@~2.1.9 | ||
30 | + - deps: mime-db@~1.21.0 | ||
31 | + | ||
32 | +1.3.0 / 2015-09-29 | ||
33 | +================== | ||
34 | + | ||
35 | + * deps: mime-types@~2.1.7 | ||
36 | + - deps: mime-db@~1.19.0 | ||
37 | + * deps: negotiator@0.6.0 | ||
38 | + - Fix including type extensions in parameters in `Accept` parsing | ||
39 | + - Fix parsing `Accept` parameters with quoted equals | ||
40 | + - Fix parsing `Accept` parameters with quoted semicolons | ||
41 | + - Lazy-load modules from main entry point | ||
42 | + - perf: delay type concatenation until needed | ||
43 | + - perf: enable strict mode | ||
44 | + - perf: hoist regular expressions | ||
45 | + - perf: remove closures getting spec properties | ||
46 | + - perf: remove a closure from media type parsing | ||
47 | + - perf: remove property delete from media type parsing | ||
48 | + | ||
49 | +1.2.13 / 2015-09-06 | ||
50 | +=================== | ||
51 | + | ||
52 | + * deps: mime-types@~2.1.6 | ||
53 | + - deps: mime-db@~1.18.0 | ||
54 | + | ||
55 | +1.2.12 / 2015-07-30 | ||
56 | +=================== | ||
57 | + | ||
58 | + * deps: mime-types@~2.1.4 | ||
59 | + - deps: mime-db@~1.16.0 | ||
60 | + | ||
61 | +1.2.11 / 2015-07-16 | ||
62 | +=================== | ||
63 | + | ||
64 | + * deps: mime-types@~2.1.3 | ||
65 | + - deps: mime-db@~1.15.0 | ||
66 | + | ||
67 | +1.2.10 / 2015-07-01 | ||
68 | +=================== | ||
69 | + | ||
70 | + * deps: mime-types@~2.1.2 | ||
71 | + - deps: mime-db@~1.14.0 | ||
72 | + | ||
73 | +1.2.9 / 2015-06-08 | ||
74 | +================== | ||
75 | + | ||
76 | + * deps: mime-types@~2.1.1 | ||
77 | + - perf: fix deopt during mapping | ||
78 | + | ||
79 | +1.2.8 / 2015-06-07 | ||
80 | +================== | ||
81 | + | ||
82 | + * deps: mime-types@~2.1.0 | ||
83 | + - deps: mime-db@~1.13.0 | ||
84 | + * perf: avoid argument reassignment & argument slice | ||
85 | + * perf: avoid negotiator recursive construction | ||
86 | + * perf: enable strict mode | ||
87 | + * perf: remove unnecessary bitwise operator | ||
88 | + | ||
89 | +1.2.7 / 2015-05-10 | ||
90 | +================== | ||
91 | + | ||
92 | + * deps: negotiator@0.5.3 | ||
93 | + - Fix media type parameter matching to be case-insensitive | ||
94 | + | ||
95 | +1.2.6 / 2015-05-07 | ||
96 | +================== | ||
97 | + | ||
98 | + * deps: mime-types@~2.0.11 | ||
99 | + - deps: mime-db@~1.9.1 | ||
100 | + * deps: negotiator@0.5.2 | ||
101 | + - Fix comparing media types with quoted values | ||
102 | + - Fix splitting media types with quoted commas | ||
103 | + | ||
104 | +1.2.5 / 2015-03-13 | ||
105 | +================== | ||
106 | + | ||
107 | + * deps: mime-types@~2.0.10 | ||
108 | + - deps: mime-db@~1.8.0 | ||
109 | + | ||
110 | +1.2.4 / 2015-02-14 | ||
111 | +================== | ||
112 | + | ||
113 | + * Support Node.js 0.6 | ||
114 | + * deps: mime-types@~2.0.9 | ||
115 | + - deps: mime-db@~1.7.0 | ||
116 | + * deps: negotiator@0.5.1 | ||
117 | + - Fix preference sorting to be stable for long acceptable lists | ||
118 | + | ||
119 | +1.2.3 / 2015-01-31 | ||
120 | +================== | ||
121 | + | ||
122 | + * deps: mime-types@~2.0.8 | ||
123 | + - deps: mime-db@~1.6.0 | ||
124 | + | ||
125 | +1.2.2 / 2014-12-30 | ||
126 | +================== | ||
127 | + | ||
128 | + * deps: mime-types@~2.0.7 | ||
129 | + - deps: mime-db@~1.5.0 | ||
130 | + | ||
131 | +1.2.1 / 2014-12-30 | ||
132 | +================== | ||
133 | + | ||
134 | + * deps: mime-types@~2.0.5 | ||
135 | + - deps: mime-db@~1.3.1 | ||
136 | + | ||
137 | +1.2.0 / 2014-12-19 | ||
138 | +================== | ||
139 | + | ||
140 | + * deps: negotiator@0.5.0 | ||
141 | + - Fix list return order when large accepted list | ||
142 | + - Fix missing identity encoding when q=0 exists | ||
143 | + - Remove dynamic building of Negotiator class | ||
144 | + | ||
145 | +1.1.4 / 2014-12-10 | ||
146 | +================== | ||
147 | + | ||
148 | + * deps: mime-types@~2.0.4 | ||
149 | + - deps: mime-db@~1.3.0 | ||
150 | + | ||
151 | +1.1.3 / 2014-11-09 | ||
152 | +================== | ||
153 | + | ||
154 | + * deps: mime-types@~2.0.3 | ||
155 | + - deps: mime-db@~1.2.0 | ||
156 | + | ||
157 | +1.1.2 / 2014-10-14 | ||
158 | +================== | ||
159 | + | ||
160 | + * deps: negotiator@0.4.9 | ||
161 | + - Fix error when media type has invalid parameter | ||
162 | + | ||
163 | +1.1.1 / 2014-09-28 | ||
164 | +================== | ||
165 | + | ||
166 | + * deps: mime-types@~2.0.2 | ||
167 | + - deps: mime-db@~1.1.0 | ||
168 | + * deps: negotiator@0.4.8 | ||
169 | + - Fix all negotiations to be case-insensitive | ||
170 | + - Stable sort preferences of same quality according to client order | ||
171 | + | ||
172 | +1.1.0 / 2014-09-02 | ||
173 | +================== | ||
174 | + | ||
175 | + * update `mime-types` | ||
176 | + | ||
177 | +1.0.7 / 2014-07-04 | ||
178 | +================== | ||
179 | + | ||
180 | + * Fix wrong type returned from `type` when match after unknown extension | ||
181 | + | ||
182 | +1.0.6 / 2014-06-24 | ||
183 | +================== | ||
184 | + | ||
185 | + * deps: negotiator@0.4.7 | ||
186 | + | ||
187 | +1.0.5 / 2014-06-20 | ||
188 | +================== | ||
189 | + | ||
190 | + * fix crash when unknown extension given | ||
191 | + | ||
192 | +1.0.4 / 2014-06-19 | ||
193 | +================== | ||
194 | + | ||
195 | + * use `mime-types` | ||
196 | + | ||
197 | +1.0.3 / 2014-06-11 | ||
198 | +================== | ||
199 | + | ||
200 | + * deps: negotiator@0.4.6 | ||
201 | + - Order by specificity when quality is the same | ||
202 | + | ||
203 | +1.0.2 / 2014-05-29 | ||
204 | +================== | ||
205 | + | ||
206 | + * Fix interpretation when header not in request | ||
207 | + * deps: pin negotiator@0.4.5 | ||
208 | + | ||
209 | +1.0.1 / 2014-01-18 | ||
210 | +================== | ||
211 | + | ||
212 | + * Identity encoding isn't always acceptable | ||
213 | + * deps: negotiator@~0.4.0 | ||
214 | + | ||
215 | +1.0.0 / 2013-12-27 | ||
216 | +================== | ||
217 | + | ||
218 | + * Genesis |
node_modules/accepts/LICENSE
0 → 100644
1 | +(The MIT License) | ||
2 | + | ||
3 | +Copyright (c) 2014 Jonathan Ong <me@jongleberry.com> | ||
4 | +Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com> | ||
5 | + | ||
6 | +Permission is hereby granted, free of charge, to any person obtaining | ||
7 | +a copy of this software and associated documentation files (the | ||
8 | +'Software'), to deal in the Software without restriction, including | ||
9 | +without limitation the rights to use, copy, modify, merge, publish, | ||
10 | +distribute, sublicense, and/or sell copies of the Software, and to | ||
11 | +permit persons to whom the Software is furnished to do so, subject to | ||
12 | +the following conditions: | ||
13 | + | ||
14 | +The above copyright notice and this permission notice shall be | ||
15 | +included in all copies or substantial portions of the Software. | ||
16 | + | ||
17 | +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, | ||
18 | +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
19 | +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
20 | +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
21 | +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
22 | +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
23 | +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
node_modules/accepts/README.md
0 → 100644
1 | +# accepts | ||
2 | + | ||
3 | +[![NPM Version][npm-image]][npm-url] | ||
4 | +[![NPM Downloads][downloads-image]][downloads-url] | ||
5 | +[![Node.js Version][node-version-image]][node-version-url] | ||
6 | +[![Build Status][travis-image]][travis-url] | ||
7 | +[![Test Coverage][coveralls-image]][coveralls-url] | ||
8 | + | ||
9 | +Higher level content negotiation based on [negotiator](https://www.npmjs.com/package/negotiator). | ||
10 | +Extracted from [koa](https://www.npmjs.com/package/koa) for general use. | ||
11 | + | ||
12 | +In addition to negotiator, it allows: | ||
13 | + | ||
14 | +- Allows types as an array or arguments list, ie `(['text/html', 'application/json'])` | ||
15 | + as well as `('text/html', 'application/json')`. | ||
16 | +- Allows type shorthands such as `json`. | ||
17 | +- Returns `false` when no types match | ||
18 | +- Treats non-existent headers as `*` | ||
19 | + | ||
20 | +## Installation | ||
21 | + | ||
22 | +This is a [Node.js](https://nodejs.org/en/) module available through the | ||
23 | +[npm registry](https://www.npmjs.com/). Installation is done using the | ||
24 | +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): | ||
25 | + | ||
26 | +```sh | ||
27 | +$ npm install accepts | ||
28 | +``` | ||
29 | + | ||
30 | +## API | ||
31 | + | ||
32 | +<!-- eslint-disable no-unused-vars --> | ||
33 | + | ||
34 | +```js | ||
35 | +var accepts = require('accepts') | ||
36 | +``` | ||
37 | + | ||
38 | +### accepts(req) | ||
39 | + | ||
40 | +Create a new `Accepts` object for the given `req`. | ||
41 | + | ||
42 | +#### .charset(charsets) | ||
43 | + | ||
44 | +Return the first accepted charset. If nothing in `charsets` is accepted, | ||
45 | +then `false` is returned. | ||
46 | + | ||
47 | +#### .charsets() | ||
48 | + | ||
49 | +Return the charsets that the request accepts, in the order of the client's | ||
50 | +preference (most preferred first). | ||
51 | + | ||
52 | +#### .encoding(encodings) | ||
53 | + | ||
54 | +Return the first accepted encoding. If nothing in `encodings` is accepted, | ||
55 | +then `false` is returned. | ||
56 | + | ||
57 | +#### .encodings() | ||
58 | + | ||
59 | +Return the encodings that the request accepts, in the order of the client's | ||
60 | +preference (most preferred first). | ||
61 | + | ||
62 | +#### .language(languages) | ||
63 | + | ||
64 | +Return the first accepted language. If nothing in `languages` is accepted, | ||
65 | +then `false` is returned. | ||
66 | + | ||
67 | +#### .languages() | ||
68 | + | ||
69 | +Return the languages that the request accepts, in the order of the client's | ||
70 | +preference (most preferred first). | ||
71 | + | ||
72 | +#### .type(types) | ||
73 | + | ||
74 | +Return the first accepted type (and it is returned as the same text as what | ||
75 | +appears in the `types` array). If nothing in `types` is accepted, then `false` | ||
76 | +is returned. | ||
77 | + | ||
78 | +The `types` array can contain full MIME types or file extensions. Any value | ||
79 | +that is not a full MIME types is passed to `require('mime-types').lookup`. | ||
80 | + | ||
81 | +#### .types() | ||
82 | + | ||
83 | +Return the types that the request accepts, in the order of the client's | ||
84 | +preference (most preferred first). | ||
85 | + | ||
86 | +## Examples | ||
87 | + | ||
88 | +### Simple type negotiation | ||
89 | + | ||
90 | +This simple example shows how to use `accepts` to return a different typed | ||
91 | +respond body based on what the client wants to accept. The server lists it's | ||
92 | +preferences in order and will get back the best match between the client and | ||
93 | +server. | ||
94 | + | ||
95 | +```js | ||
96 | +var accepts = require('accepts') | ||
97 | +var http = require('http') | ||
98 | + | ||
99 | +function app (req, res) { | ||
100 | + var accept = accepts(req) | ||
101 | + | ||
102 | + // the order of this list is significant; should be server preferred order | ||
103 | + switch (accept.type(['json', 'html'])) { | ||
104 | + case 'json': | ||
105 | + res.setHeader('Content-Type', 'application/json') | ||
106 | + res.write('{"hello":"world!"}') | ||
107 | + break | ||
108 | + case 'html': | ||
109 | + res.setHeader('Content-Type', 'text/html') | ||
110 | + res.write('<b>hello, world!</b>') | ||
111 | + break | ||
112 | + default: | ||
113 | + // the fallback is text/plain, so no need to specify it above | ||
114 | + res.setHeader('Content-Type', 'text/plain') | ||
115 | + res.write('hello, world!') | ||
116 | + break | ||
117 | + } | ||
118 | + | ||
119 | + res.end() | ||
120 | +} | ||
121 | + | ||
122 | +http.createServer(app).listen(3000) | ||
123 | +``` | ||
124 | + | ||
125 | +You can test this out with the cURL program: | ||
126 | +```sh | ||
127 | +curl -I -H'Accept: text/html' http://localhost:3000/ | ||
128 | +``` | ||
129 | + | ||
130 | +## License | ||
131 | + | ||
132 | +[MIT](LICENSE) | ||
133 | + | ||
134 | +[npm-image]: https://img.shields.io/npm/v/accepts.svg | ||
135 | +[npm-url]: https://npmjs.org/package/accepts | ||
136 | +[node-version-image]: https://img.shields.io/node/v/accepts.svg | ||
137 | +[node-version-url]: https://nodejs.org/en/download/ | ||
138 | +[travis-image]: https://img.shields.io/travis/jshttp/accepts/master.svg | ||
139 | +[travis-url]: https://travis-ci.org/jshttp/accepts | ||
140 | +[coveralls-image]: https://img.shields.io/coveralls/jshttp/accepts/master.svg | ||
141 | +[coveralls-url]: https://coveralls.io/r/jshttp/accepts | ||
142 | +[downloads-image]: https://img.shields.io/npm/dm/accepts.svg | ||
143 | +[downloads-url]: https://npmjs.org/package/accepts |
node_modules/accepts/index.js
0 → 100644
1 | +/*! | ||
2 | + * accepts | ||
3 | + * Copyright(c) 2014 Jonathan Ong | ||
4 | + * Copyright(c) 2015 Douglas Christopher Wilson | ||
5 | + * MIT Licensed | ||
6 | + */ | ||
7 | + | ||
8 | +'use strict' | ||
9 | + | ||
10 | +/** | ||
11 | + * Module dependencies. | ||
12 | + * @private | ||
13 | + */ | ||
14 | + | ||
15 | +var Negotiator = require('negotiator') | ||
16 | +var mime = require('mime-types') | ||
17 | + | ||
18 | +/** | ||
19 | + * Module exports. | ||
20 | + * @public | ||
21 | + */ | ||
22 | + | ||
23 | +module.exports = Accepts | ||
24 | + | ||
25 | +/** | ||
26 | + * Create a new Accepts object for the given req. | ||
27 | + * | ||
28 | + * @param {object} req | ||
29 | + * @public | ||
30 | + */ | ||
31 | + | ||
32 | +function Accepts (req) { | ||
33 | + if (!(this instanceof Accepts)) { | ||
34 | + return new Accepts(req) | ||
35 | + } | ||
36 | + | ||
37 | + this.headers = req.headers | ||
38 | + this.negotiator = new Negotiator(req) | ||
39 | +} | ||
40 | + | ||
41 | +/** | ||
42 | + * Check if the given `type(s)` is acceptable, returning | ||
43 | + * the best match when true, otherwise `undefined`, in which | ||
44 | + * case you should respond with 406 "Not Acceptable". | ||
45 | + * | ||
46 | + * The `type` value may be a single mime type string | ||
47 | + * such as "application/json", the extension name | ||
48 | + * such as "json" or an array `["json", "html", "text/plain"]`. When a list | ||
49 | + * or array is given the _best_ match, if any is returned. | ||
50 | + * | ||
51 | + * Examples: | ||
52 | + * | ||
53 | + * // Accept: text/html | ||
54 | + * this.types('html'); | ||
55 | + * // => "html" | ||
56 | + * | ||
57 | + * // Accept: text/*, application/json | ||
58 | + * this.types('html'); | ||
59 | + * // => "html" | ||
60 | + * this.types('text/html'); | ||
61 | + * // => "text/html" | ||
62 | + * this.types('json', 'text'); | ||
63 | + * // => "json" | ||
64 | + * this.types('application/json'); | ||
65 | + * // => "application/json" | ||
66 | + * | ||
67 | + * // Accept: text/*, application/json | ||
68 | + * this.types('image/png'); | ||
69 | + * this.types('png'); | ||
70 | + * // => undefined | ||
71 | + * | ||
72 | + * // Accept: text/*;q=.5, application/json | ||
73 | + * this.types(['html', 'json']); | ||
74 | + * this.types('html', 'json'); | ||
75 | + * // => "json" | ||
76 | + * | ||
77 | + * @param {String|Array} types... | ||
78 | + * @return {String|Array|Boolean} | ||
79 | + * @public | ||
80 | + */ | ||
81 | + | ||
82 | +Accepts.prototype.type = | ||
83 | +Accepts.prototype.types = function (types_) { | ||
84 | + var types = types_ | ||
85 | + | ||
86 | + // support flattened arguments | ||
87 | + if (types && !Array.isArray(types)) { | ||
88 | + types = new Array(arguments.length) | ||
89 | + for (var i = 0; i < types.length; i++) { | ||
90 | + types[i] = arguments[i] | ||
91 | + } | ||
92 | + } | ||
93 | + | ||
94 | + // no types, return all requested types | ||
95 | + if (!types || types.length === 0) { | ||
96 | + return this.negotiator.mediaTypes() | ||
97 | + } | ||
98 | + | ||
99 | + // no accept header, return first given type | ||
100 | + if (!this.headers.accept) { | ||
101 | + return types[0] | ||
102 | + } | ||
103 | + | ||
104 | + var mimes = types.map(extToMime) | ||
105 | + var accepts = this.negotiator.mediaTypes(mimes.filter(validMime)) | ||
106 | + var first = accepts[0] | ||
107 | + | ||
108 | + return first | ||
109 | + ? types[mimes.indexOf(first)] | ||
110 | + : false | ||
111 | +} | ||
112 | + | ||
113 | +/** | ||
114 | + * Return accepted encodings or best fit based on `encodings`. | ||
115 | + * | ||
116 | + * Given `Accept-Encoding: gzip, deflate` | ||
117 | + * an array sorted by quality is returned: | ||
118 | + * | ||
119 | + * ['gzip', 'deflate'] | ||
120 | + * | ||
121 | + * @param {String|Array} encodings... | ||
122 | + * @return {String|Array} | ||
123 | + * @public | ||
124 | + */ | ||
125 | + | ||
126 | +Accepts.prototype.encoding = | ||
127 | +Accepts.prototype.encodings = function (encodings_) { | ||
128 | + var encodings = encodings_ | ||
129 | + | ||
130 | + // support flattened arguments | ||
131 | + if (encodings && !Array.isArray(encodings)) { | ||
132 | + encodings = new Array(arguments.length) | ||
133 | + for (var i = 0; i < encodings.length; i++) { | ||
134 | + encodings[i] = arguments[i] | ||
135 | + } | ||
136 | + } | ||
137 | + | ||
138 | + // no encodings, return all requested encodings | ||
139 | + if (!encodings || encodings.length === 0) { | ||
140 | + return this.negotiator.encodings() | ||
141 | + } | ||
142 | + | ||
143 | + return this.negotiator.encodings(encodings)[0] || false | ||
144 | +} | ||
145 | + | ||
146 | +/** | ||
147 | + * Return accepted charsets or best fit based on `charsets`. | ||
148 | + * | ||
149 | + * Given `Accept-Charset: utf-8, iso-8859-1;q=0.2, utf-7;q=0.5` | ||
150 | + * an array sorted by quality is returned: | ||
151 | + * | ||
152 | + * ['utf-8', 'utf-7', 'iso-8859-1'] | ||
153 | + * | ||
154 | + * @param {String|Array} charsets... | ||
155 | + * @return {String|Array} | ||
156 | + * @public | ||
157 | + */ | ||
158 | + | ||
159 | +Accepts.prototype.charset = | ||
160 | +Accepts.prototype.charsets = function (charsets_) { | ||
161 | + var charsets = charsets_ | ||
162 | + | ||
163 | + // support flattened arguments | ||
164 | + if (charsets && !Array.isArray(charsets)) { | ||
165 | + charsets = new Array(arguments.length) | ||
166 | + for (var i = 0; i < charsets.length; i++) { | ||
167 | + charsets[i] = arguments[i] | ||
168 | + } | ||
169 | + } | ||
170 | + | ||
171 | + // no charsets, return all requested charsets | ||
172 | + if (!charsets || charsets.length === 0) { | ||
173 | + return this.negotiator.charsets() | ||
174 | + } | ||
175 | + | ||
176 | + return this.negotiator.charsets(charsets)[0] || false | ||
177 | +} | ||
178 | + | ||
179 | +/** | ||
180 | + * Return accepted languages or best fit based on `langs`. | ||
181 | + * | ||
182 | + * Given `Accept-Language: en;q=0.8, es, pt` | ||
183 | + * an array sorted by quality is returned: | ||
184 | + * | ||
185 | + * ['es', 'pt', 'en'] | ||
186 | + * | ||
187 | + * @param {String|Array} langs... | ||
188 | + * @return {Array|String} | ||
189 | + * @public | ||
190 | + */ | ||
191 | + | ||
192 | +Accepts.prototype.lang = | ||
193 | +Accepts.prototype.langs = | ||
194 | +Accepts.prototype.language = | ||
195 | +Accepts.prototype.languages = function (languages_) { | ||
196 | + var languages = languages_ | ||
197 | + | ||
198 | + // support flattened arguments | ||
199 | + if (languages && !Array.isArray(languages)) { | ||
200 | + languages = new Array(arguments.length) | ||
201 | + for (var i = 0; i < languages.length; i++) { | ||
202 | + languages[i] = arguments[i] | ||
203 | + } | ||
204 | + } | ||
205 | + | ||
206 | + // no languages, return all requested languages | ||
207 | + if (!languages || languages.length === 0) { | ||
208 | + return this.negotiator.languages() | ||
209 | + } | ||
210 | + | ||
211 | + return this.negotiator.languages(languages)[0] || false | ||
212 | +} | ||
213 | + | ||
214 | +/** | ||
215 | + * Convert extnames to mime. | ||
216 | + * | ||
217 | + * @param {String} type | ||
218 | + * @return {String} | ||
219 | + * @private | ||
220 | + */ | ||
221 | + | ||
222 | +function extToMime (type) { | ||
223 | + return type.indexOf('/') === -1 | ||
224 | + ? mime.lookup(type) | ||
225 | + : type | ||
226 | +} | ||
227 | + | ||
228 | +/** | ||
229 | + * Check if mime is valid. | ||
230 | + * | ||
231 | + * @param {String} type | ||
232 | + * @return {String} | ||
233 | + * @private | ||
234 | + */ | ||
235 | + | ||
236 | +function validMime (type) { | ||
237 | + return typeof type === 'string' | ||
238 | +} |
node_modules/accepts/package.json
0 → 100644
1 | +{ | ||
2 | + "_from": "accepts@~1.3.4", | ||
3 | + "_id": "accepts@1.3.4", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=", | ||
6 | + "_location": "/accepts", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "range", | ||
10 | + "registry": true, | ||
11 | + "raw": "accepts@~1.3.4", | ||
12 | + "name": "accepts", | ||
13 | + "escapedName": "accepts", | ||
14 | + "rawSpec": "~1.3.4", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "~1.3.4" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/express" | ||
20 | + ], | ||
21 | + "_resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz", | ||
22 | + "_shasum": "86246758c7dd6d21a6474ff084a4740ec05eb21f", | ||
23 | + "_spec": "accepts@~1.3.4", | ||
24 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project\\node_modules\\express", | ||
25 | + "bugs": { | ||
26 | + "url": "https://github.com/jshttp/accepts/issues" | ||
27 | + }, | ||
28 | + "bundleDependencies": false, | ||
29 | + "contributors": [ | ||
30 | + { | ||
31 | + "name": "Douglas Christopher Wilson", | ||
32 | + "email": "doug@somethingdoug.com" | ||
33 | + }, | ||
34 | + { | ||
35 | + "name": "Jonathan Ong", | ||
36 | + "email": "me@jongleberry.com", | ||
37 | + "url": "http://jongleberry.com" | ||
38 | + } | ||
39 | + ], | ||
40 | + "dependencies": { | ||
41 | + "mime-types": "~2.1.16", | ||
42 | + "negotiator": "0.6.1" | ||
43 | + }, | ||
44 | + "deprecated": false, | ||
45 | + "description": "Higher-level content negotiation", | ||
46 | + "devDependencies": { | ||
47 | + "eslint": "3.19.0", | ||
48 | + "eslint-config-standard": "10.2.1", | ||
49 | + "eslint-plugin-import": "2.7.0", | ||
50 | + "eslint-plugin-markdown": "1.0.0-beta.6", | ||
51 | + "eslint-plugin-node": "5.1.1", | ||
52 | + "eslint-plugin-promise": "3.5.0", | ||
53 | + "eslint-plugin-standard": "3.0.1", | ||
54 | + "istanbul": "0.4.5", | ||
55 | + "mocha": "~1.21.5" | ||
56 | + }, | ||
57 | + "engines": { | ||
58 | + "node": ">= 0.6" | ||
59 | + }, | ||
60 | + "files": [ | ||
61 | + "LICENSE", | ||
62 | + "HISTORY.md", | ||
63 | + "index.js" | ||
64 | + ], | ||
65 | + "homepage": "https://github.com/jshttp/accepts#readme", | ||
66 | + "keywords": [ | ||
67 | + "content", | ||
68 | + "negotiation", | ||
69 | + "accept", | ||
70 | + "accepts" | ||
71 | + ], | ||
72 | + "license": "MIT", | ||
73 | + "name": "accepts", | ||
74 | + "repository": { | ||
75 | + "type": "git", | ||
76 | + "url": "git+https://github.com/jshttp/accepts.git" | ||
77 | + }, | ||
78 | + "scripts": { | ||
79 | + "lint": "eslint --plugin markdown --ext js,md .", | ||
80 | + "test": "mocha --reporter spec --check-leaks --bail test/", | ||
81 | + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | ||
82 | + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | ||
83 | + }, | ||
84 | + "version": "1.3.4" | ||
85 | +} |
node_modules/array-flatten/LICENSE
0 → 100644
1 | +The MIT License (MIT) | ||
2 | + | ||
3 | +Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com) | ||
4 | + | ||
5 | +Permission is hereby granted, free of charge, to any person obtaining a copy | ||
6 | +of this software and associated documentation files (the "Software"), to deal | ||
7 | +in the Software without restriction, including without limitation the rights | ||
8 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
9 | +copies of the Software, and to permit persons to whom the Software is | ||
10 | +furnished to do so, subject to the following conditions: | ||
11 | + | ||
12 | +The above copyright notice and this permission notice shall be included in | ||
13 | +all copies or substantial portions of the Software. | ||
14 | + | ||
15 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
16 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
17 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
18 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
19 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
20 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
21 | +THE SOFTWARE. |
node_modules/array-flatten/README.md
0 → 100644
1 | +# Array Flatten | ||
2 | + | ||
3 | +[![NPM version][npm-image]][npm-url] | ||
4 | +[![NPM downloads][downloads-image]][downloads-url] | ||
5 | +[![Build status][travis-image]][travis-url] | ||
6 | +[![Test coverage][coveralls-image]][coveralls-url] | ||
7 | + | ||
8 | +> Flatten an array of nested arrays into a single flat array. Accepts an optional depth. | ||
9 | + | ||
10 | +## Installation | ||
11 | + | ||
12 | +``` | ||
13 | +npm install array-flatten --save | ||
14 | +``` | ||
15 | + | ||
16 | +## Usage | ||
17 | + | ||
18 | +```javascript | ||
19 | +var flatten = require('array-flatten') | ||
20 | + | ||
21 | +flatten([1, [2, [3, [4, [5], 6], 7], 8], 9]) | ||
22 | +//=> [1, 2, 3, 4, 5, 6, 7, 8, 9] | ||
23 | + | ||
24 | +flatten([1, [2, [3, [4, [5], 6], 7], 8], 9], 2) | ||
25 | +//=> [1, 2, 3, [4, [5], 6], 7, 8, 9] | ||
26 | + | ||
27 | +(function () { | ||
28 | + flatten(arguments) //=> [1, 2, 3] | ||
29 | +})(1, [2, 3]) | ||
30 | +``` | ||
31 | + | ||
32 | +## License | ||
33 | + | ||
34 | +MIT | ||
35 | + | ||
36 | +[npm-image]: https://img.shields.io/npm/v/array-flatten.svg?style=flat | ||
37 | +[npm-url]: https://npmjs.org/package/array-flatten | ||
38 | +[downloads-image]: https://img.shields.io/npm/dm/array-flatten.svg?style=flat | ||
39 | +[downloads-url]: https://npmjs.org/package/array-flatten | ||
40 | +[travis-image]: https://img.shields.io/travis/blakeembrey/array-flatten.svg?style=flat | ||
41 | +[travis-url]: https://travis-ci.org/blakeembrey/array-flatten | ||
42 | +[coveralls-image]: https://img.shields.io/coveralls/blakeembrey/array-flatten.svg?style=flat | ||
43 | +[coveralls-url]: https://coveralls.io/r/blakeembrey/array-flatten?branch=master |
node_modules/array-flatten/array-flatten.js
0 → 100644
1 | +'use strict' | ||
2 | + | ||
3 | +/** | ||
4 | + * Expose `arrayFlatten`. | ||
5 | + */ | ||
6 | +module.exports = arrayFlatten | ||
7 | + | ||
8 | +/** | ||
9 | + * Recursive flatten function with depth. | ||
10 | + * | ||
11 | + * @param {Array} array | ||
12 | + * @param {Array} result | ||
13 | + * @param {Number} depth | ||
14 | + * @return {Array} | ||
15 | + */ | ||
16 | +function flattenWithDepth (array, result, depth) { | ||
17 | + for (var i = 0; i < array.length; i++) { | ||
18 | + var value = array[i] | ||
19 | + | ||
20 | + if (depth > 0 && Array.isArray(value)) { | ||
21 | + flattenWithDepth(value, result, depth - 1) | ||
22 | + } else { | ||
23 | + result.push(value) | ||
24 | + } | ||
25 | + } | ||
26 | + | ||
27 | + return result | ||
28 | +} | ||
29 | + | ||
30 | +/** | ||
31 | + * Recursive flatten function. Omitting depth is slightly faster. | ||
32 | + * | ||
33 | + * @param {Array} array | ||
34 | + * @param {Array} result | ||
35 | + * @return {Array} | ||
36 | + */ | ||
37 | +function flattenForever (array, result) { | ||
38 | + for (var i = 0; i < array.length; i++) { | ||
39 | + var value = array[i] | ||
40 | + | ||
41 | + if (Array.isArray(value)) { | ||
42 | + flattenForever(value, result) | ||
43 | + } else { | ||
44 | + result.push(value) | ||
45 | + } | ||
46 | + } | ||
47 | + | ||
48 | + return result | ||
49 | +} | ||
50 | + | ||
51 | +/** | ||
52 | + * Flatten an array, with the ability to define a depth. | ||
53 | + * | ||
54 | + * @param {Array} array | ||
55 | + * @param {Number} depth | ||
56 | + * @return {Array} | ||
57 | + */ | ||
58 | +function arrayFlatten (array, depth) { | ||
59 | + if (depth == null) { | ||
60 | + return flattenForever(array, []) | ||
61 | + } | ||
62 | + | ||
63 | + return flattenWithDepth(array, [], depth) | ||
64 | +} |
node_modules/array-flatten/package.json
0 → 100644
1 | +{ | ||
2 | + "_from": "array-flatten@1.1.1", | ||
3 | + "_id": "array-flatten@1.1.1", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", | ||
6 | + "_location": "/array-flatten", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "version", | ||
10 | + "registry": true, | ||
11 | + "raw": "array-flatten@1.1.1", | ||
12 | + "name": "array-flatten", | ||
13 | + "escapedName": "array-flatten", | ||
14 | + "rawSpec": "1.1.1", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "1.1.1" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/express" | ||
20 | + ], | ||
21 | + "_resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", | ||
22 | + "_shasum": "9a5f699051b1e7073328f2a008968b64ea2955d2", | ||
23 | + "_spec": "array-flatten@1.1.1", | ||
24 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project\\node_modules\\express", | ||
25 | + "author": { | ||
26 | + "name": "Blake Embrey", | ||
27 | + "email": "hello@blakeembrey.com", | ||
28 | + "url": "http://blakeembrey.me" | ||
29 | + }, | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/blakeembrey/array-flatten/issues" | ||
32 | + }, | ||
33 | + "bundleDependencies": false, | ||
34 | + "deprecated": false, | ||
35 | + "description": "Flatten an array of nested arrays into a single flat array", | ||
36 | + "devDependencies": { | ||
37 | + "istanbul": "^0.3.13", | ||
38 | + "mocha": "^2.2.4", | ||
39 | + "pre-commit": "^1.0.7", | ||
40 | + "standard": "^3.7.3" | ||
41 | + }, | ||
42 | + "files": [ | ||
43 | + "array-flatten.js", | ||
44 | + "LICENSE" | ||
45 | + ], | ||
46 | + "homepage": "https://github.com/blakeembrey/array-flatten", | ||
47 | + "keywords": [ | ||
48 | + "array", | ||
49 | + "flatten", | ||
50 | + "arguments", | ||
51 | + "depth" | ||
52 | + ], | ||
53 | + "license": "MIT", | ||
54 | + "main": "array-flatten.js", | ||
55 | + "name": "array-flatten", | ||
56 | + "repository": { | ||
57 | + "type": "git", | ||
58 | + "url": "git://github.com/blakeembrey/array-flatten.git" | ||
59 | + }, | ||
60 | + "scripts": { | ||
61 | + "test": "istanbul cover _mocha -- -R spec" | ||
62 | + }, | ||
63 | + "version": "1.1.1" | ||
64 | +} |
node_modules/bignumber.js/LICENCE
0 → 100644
1 | +The MIT Licence. | ||
2 | + | ||
3 | +Copyright (c) 2012, 2013, 2014, 2015, 2016, 2017 Michael Mclaughlin | ||
4 | + | ||
5 | +Permission is hereby granted, free of charge, to any person obtaining | ||
6 | +a copy of this software and associated documentation files (the | ||
7 | +'Software'), to deal in the Software without restriction, including | ||
8 | +without limitation the rights to use, copy, modify, merge, publish, | ||
9 | +distribute, sublicense, and/or sell copies of the Software, and to | ||
10 | +permit persons to whom the Software is furnished to do so, subject to | ||
11 | +the following conditions: | ||
12 | + | ||
13 | +The above copyright notice and this permission notice shall be | ||
14 | +included in all copies or substantial portions of the Software. | ||
15 | + | ||
16 | +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, | ||
17 | +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
18 | +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
19 | +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
20 | +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
21 | +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
22 | +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
23 | + |
node_modules/bignumber.js/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/bignumber.js/bignumber.d.ts
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/bignumber.js/bignumber.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/bignumber.js/bignumber.js.map
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/bignumber.js/bignumber.min.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/bignumber.js/bower.json
0 → 100644
1 | +{ | ||
2 | + "name": "bignumber.js", | ||
3 | + "main": "bignumber.js", | ||
4 | + "version": "4.0.4", | ||
5 | + "homepage": "https://github.com/MikeMcl/bignumber.js", | ||
6 | + "authors": [ | ||
7 | + "Michael Mclaughlin <M8ch88l@gmail.com>" | ||
8 | + ], | ||
9 | + "description": "A library for arbitrary-precision decimal and non-decimal arithmetic", | ||
10 | + "moduleType": [ | ||
11 | + "amd", | ||
12 | + "globals", | ||
13 | + "node" | ||
14 | + ], | ||
15 | + "keywords": [ | ||
16 | + "arbitrary", | ||
17 | + "precision", | ||
18 | + "arithmetic", | ||
19 | + "big", | ||
20 | + "number", | ||
21 | + "decimal", | ||
22 | + "float", | ||
23 | + "biginteger", | ||
24 | + "bigdecimal", | ||
25 | + "bignumber", | ||
26 | + "bigint", | ||
27 | + "bignum" | ||
28 | + ], | ||
29 | + "license": "MIT", | ||
30 | + "ignore": [ | ||
31 | + ".*", | ||
32 | + "*.json", | ||
33 | + "test" | ||
34 | + ] | ||
35 | +} | ||
36 | + |
node_modules/bignumber.js/doc/API.html
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/bignumber.js/package.json
0 → 100644
1 | +{ | ||
2 | + "_from": "bignumber.js@4.0.4", | ||
3 | + "_id": "bignumber.js@4.0.4", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha512-LDXpJKVzEx2/OqNbG9mXBNvHuiRL4PzHCGfnANHMJ+fv68Ads3exDVJeGDJws+AoNEuca93bU3q+S0woeUaCdg==", | ||
6 | + "_location": "/bignumber.js", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "version", | ||
10 | + "registry": true, | ||
11 | + "raw": "bignumber.js@4.0.4", | ||
12 | + "name": "bignumber.js", | ||
13 | + "escapedName": "bignumber.js", | ||
14 | + "rawSpec": "4.0.4", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "4.0.4" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/mysql" | ||
20 | + ], | ||
21 | + "_resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-4.0.4.tgz", | ||
22 | + "_shasum": "7c40f5abcd2d6623ab7b99682ee7db81b11889a4", | ||
23 | + "_spec": "bignumber.js@4.0.4", | ||
24 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project\\node_modules\\mysql", | ||
25 | + "author": { | ||
26 | + "name": "Michael Mclaughlin", | ||
27 | + "email": "M8ch88l@gmail.com" | ||
28 | + }, | ||
29 | + "bugs": { | ||
30 | + "url": "https://github.com/MikeMcl/bignumber.js/issues" | ||
31 | + }, | ||
32 | + "bundleDependencies": false, | ||
33 | + "deprecated": false, | ||
34 | + "description": "A library for arbitrary-precision decimal and non-decimal arithmetic", | ||
35 | + "engines": { | ||
36 | + "node": "*" | ||
37 | + }, | ||
38 | + "homepage": "https://github.com/MikeMcl/bignumber.js#readme", | ||
39 | + "keywords": [ | ||
40 | + "arbitrary", | ||
41 | + "precision", | ||
42 | + "arithmetic", | ||
43 | + "big", | ||
44 | + "number", | ||
45 | + "decimal", | ||
46 | + "float", | ||
47 | + "biginteger", | ||
48 | + "bigdecimal", | ||
49 | + "bignumber", | ||
50 | + "bigint", | ||
51 | + "bignum" | ||
52 | + ], | ||
53 | + "license": "MIT", | ||
54 | + "main": "bignumber.js", | ||
55 | + "name": "bignumber.js", | ||
56 | + "repository": { | ||
57 | + "type": "git", | ||
58 | + "url": "git+https://github.com/MikeMcl/bignumber.js.git" | ||
59 | + }, | ||
60 | + "scripts": { | ||
61 | + "build": "uglifyjs bignumber.js --source-map bignumber.js.map -c -m -o bignumber.min.js --preamble \"/* bignumber.js v4.0.4 https://github.com/MikeMcl/bignumber.js/LICENCE */\"", | ||
62 | + "test": "node ./test/every-test.js" | ||
63 | + }, | ||
64 | + "types": "bignumber.d.ts", | ||
65 | + "version": "4.0.4" | ||
66 | +} |
node_modules/body-parser/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/body-parser/LICENSE
0 → 100644
1 | +(The MIT License) | ||
2 | + | ||
3 | +Copyright (c) 2014 Jonathan Ong <me@jongleberry.com> | ||
4 | +Copyright (c) 2014-2015 Douglas Christopher Wilson <doug@somethingdoug.com> | ||
5 | + | ||
6 | +Permission is hereby granted, free of charge, to any person obtaining | ||
7 | +a copy of this software and associated documentation files (the | ||
8 | +'Software'), to deal in the Software without restriction, including | ||
9 | +without limitation the rights to use, copy, modify, merge, publish, | ||
10 | +distribute, sublicense, and/or sell copies of the Software, and to | ||
11 | +permit persons to whom the Software is furnished to do so, subject to | ||
12 | +the following conditions: | ||
13 | + | ||
14 | +The above copyright notice and this permission notice shall be | ||
15 | +included in all copies or substantial portions of the Software. | ||
16 | + | ||
17 | +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, | ||
18 | +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
19 | +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
20 | +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
21 | +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
22 | +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
23 | +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
node_modules/body-parser/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/body-parser/index.js
0 → 100644
1 | +/*! | ||
2 | + * body-parser | ||
3 | + * Copyright(c) 2014-2015 Douglas Christopher Wilson | ||
4 | + * MIT Licensed | ||
5 | + */ | ||
6 | + | ||
7 | +'use strict' | ||
8 | + | ||
9 | +/** | ||
10 | + * Module dependencies. | ||
11 | + * @private | ||
12 | + */ | ||
13 | + | ||
14 | +var deprecate = require('depd')('body-parser') | ||
15 | + | ||
16 | +/** | ||
17 | + * Cache of loaded parsers. | ||
18 | + * @private | ||
19 | + */ | ||
20 | + | ||
21 | +var parsers = Object.create(null) | ||
22 | + | ||
23 | +/** | ||
24 | + * @typedef Parsers | ||
25 | + * @type {function} | ||
26 | + * @property {function} json | ||
27 | + * @property {function} raw | ||
28 | + * @property {function} text | ||
29 | + * @property {function} urlencoded | ||
30 | + */ | ||
31 | + | ||
32 | +/** | ||
33 | + * Module exports. | ||
34 | + * @type {Parsers} | ||
35 | + */ | ||
36 | + | ||
37 | +exports = module.exports = deprecate.function(bodyParser, | ||
38 | + 'bodyParser: use individual json/urlencoded middlewares') | ||
39 | + | ||
40 | +/** | ||
41 | + * JSON parser. | ||
42 | + * @public | ||
43 | + */ | ||
44 | + | ||
45 | +Object.defineProperty(exports, 'json', { | ||
46 | + configurable: true, | ||
47 | + enumerable: true, | ||
48 | + get: createParserGetter('json') | ||
49 | +}) | ||
50 | + | ||
51 | +/** | ||
52 | + * Raw parser. | ||
53 | + * @public | ||
54 | + */ | ||
55 | + | ||
56 | +Object.defineProperty(exports, 'raw', { | ||
57 | + configurable: true, | ||
58 | + enumerable: true, | ||
59 | + get: createParserGetter('raw') | ||
60 | +}) | ||
61 | + | ||
62 | +/** | ||
63 | + * Text parser. | ||
64 | + * @public | ||
65 | + */ | ||
66 | + | ||
67 | +Object.defineProperty(exports, 'text', { | ||
68 | + configurable: true, | ||
69 | + enumerable: true, | ||
70 | + get: createParserGetter('text') | ||
71 | +}) | ||
72 | + | ||
73 | +/** | ||
74 | + * URL-encoded parser. | ||
75 | + * @public | ||
76 | + */ | ||
77 | + | ||
78 | +Object.defineProperty(exports, 'urlencoded', { | ||
79 | + configurable: true, | ||
80 | + enumerable: true, | ||
81 | + get: createParserGetter('urlencoded') | ||
82 | +}) | ||
83 | + | ||
84 | +/** | ||
85 | + * Create a middleware to parse json and urlencoded bodies. | ||
86 | + * | ||
87 | + * @param {object} [options] | ||
88 | + * @return {function} | ||
89 | + * @deprecated | ||
90 | + * @public | ||
91 | + */ | ||
92 | + | ||
93 | +function bodyParser (options) { | ||
94 | + var opts = {} | ||
95 | + | ||
96 | + // exclude type option | ||
97 | + if (options) { | ||
98 | + for (var prop in options) { | ||
99 | + if (prop !== 'type') { | ||
100 | + opts[prop] = options[prop] | ||
101 | + } | ||
102 | + } | ||
103 | + } | ||
104 | + | ||
105 | + var _urlencoded = exports.urlencoded(opts) | ||
106 | + var _json = exports.json(opts) | ||
107 | + | ||
108 | + return function bodyParser (req, res, next) { | ||
109 | + _json(req, res, function (err) { | ||
110 | + if (err) return next(err) | ||
111 | + _urlencoded(req, res, next) | ||
112 | + }) | ||
113 | + } | ||
114 | +} | ||
115 | + | ||
116 | +/** | ||
117 | + * Create a getter for loading a parser. | ||
118 | + * @private | ||
119 | + */ | ||
120 | + | ||
121 | +function createParserGetter (name) { | ||
122 | + return function get () { | ||
123 | + return loadParser(name) | ||
124 | + } | ||
125 | +} | ||
126 | + | ||
127 | +/** | ||
128 | + * Load a parser module. | ||
129 | + * @private | ||
130 | + */ | ||
131 | + | ||
132 | +function loadParser (parserName) { | ||
133 | + var parser = parsers[parserName] | ||
134 | + | ||
135 | + if (parser !== undefined) { | ||
136 | + return parser | ||
137 | + } | ||
138 | + | ||
139 | + // this uses a switch for static require analysis | ||
140 | + switch (parserName) { | ||
141 | + case 'json': | ||
142 | + parser = require('./lib/types/json') | ||
143 | + break | ||
144 | + case 'raw': | ||
145 | + parser = require('./lib/types/raw') | ||
146 | + break | ||
147 | + case 'text': | ||
148 | + parser = require('./lib/types/text') | ||
149 | + break | ||
150 | + case 'urlencoded': | ||
151 | + parser = require('./lib/types/urlencoded') | ||
152 | + break | ||
153 | + } | ||
154 | + | ||
155 | + // store to prevent invoking require() | ||
156 | + return (parsers[parserName] = parser) | ||
157 | +} |
node_modules/body-parser/lib/read.js
0 → 100644
1 | +/*! | ||
2 | + * body-parser | ||
3 | + * Copyright(c) 2014-2015 Douglas Christopher Wilson | ||
4 | + * MIT Licensed | ||
5 | + */ | ||
6 | + | ||
7 | +'use strict' | ||
8 | + | ||
9 | +/** | ||
10 | + * Module dependencies. | ||
11 | + * @private | ||
12 | + */ | ||
13 | + | ||
14 | +var createError = require('http-errors') | ||
15 | +var getBody = require('raw-body') | ||
16 | +var iconv = require('iconv-lite') | ||
17 | +var onFinished = require('on-finished') | ||
18 | +var zlib = require('zlib') | ||
19 | + | ||
20 | +/** | ||
21 | + * Module exports. | ||
22 | + */ | ||
23 | + | ||
24 | +module.exports = read | ||
25 | + | ||
26 | +/** | ||
27 | + * Read a request into a buffer and parse. | ||
28 | + * | ||
29 | + * @param {object} req | ||
30 | + * @param {object} res | ||
31 | + * @param {function} next | ||
32 | + * @param {function} parse | ||
33 | + * @param {function} debug | ||
34 | + * @param {object} options | ||
35 | + * @private | ||
36 | + */ | ||
37 | + | ||
38 | +function read (req, res, next, parse, debug, options) { | ||
39 | + var length | ||
40 | + var opts = options | ||
41 | + var stream | ||
42 | + | ||
43 | + // flag as parsed | ||
44 | + req._body = true | ||
45 | + | ||
46 | + // read options | ||
47 | + var encoding = opts.encoding !== null | ||
48 | + ? opts.encoding | ||
49 | + : null | ||
50 | + var verify = opts.verify | ||
51 | + | ||
52 | + try { | ||
53 | + // get the content stream | ||
54 | + stream = contentstream(req, debug, opts.inflate) | ||
55 | + length = stream.length | ||
56 | + stream.length = undefined | ||
57 | + } catch (err) { | ||
58 | + return next(err) | ||
59 | + } | ||
60 | + | ||
61 | + // set raw-body options | ||
62 | + opts.length = length | ||
63 | + opts.encoding = verify | ||
64 | + ? null | ||
65 | + : encoding | ||
66 | + | ||
67 | + // assert charset is supported | ||
68 | + if (opts.encoding === null && encoding !== null && !iconv.encodingExists(encoding)) { | ||
69 | + return next(createError(415, 'unsupported charset "' + encoding.toUpperCase() + '"', { | ||
70 | + charset: encoding.toLowerCase(), | ||
71 | + type: 'charset.unsupported' | ||
72 | + })) | ||
73 | + } | ||
74 | + | ||
75 | + // read body | ||
76 | + debug('read body') | ||
77 | + getBody(stream, opts, function (error, body) { | ||
78 | + if (error) { | ||
79 | + var _error | ||
80 | + | ||
81 | + if (error.type === 'encoding.unsupported') { | ||
82 | + // echo back charset | ||
83 | + _error = createError(415, 'unsupported charset "' + encoding.toUpperCase() + '"', { | ||
84 | + charset: encoding.toLowerCase(), | ||
85 | + type: 'charset.unsupported' | ||
86 | + }) | ||
87 | + } else { | ||
88 | + // set status code on error | ||
89 | + _error = createError(400, error) | ||
90 | + } | ||
91 | + | ||
92 | + // read off entire request | ||
93 | + stream.resume() | ||
94 | + onFinished(req, function onfinished () { | ||
95 | + next(createError(400, _error)) | ||
96 | + }) | ||
97 | + return | ||
98 | + } | ||
99 | + | ||
100 | + // verify | ||
101 | + if (verify) { | ||
102 | + try { | ||
103 | + debug('verify body') | ||
104 | + verify(req, res, body, encoding) | ||
105 | + } catch (err) { | ||
106 | + next(createError(403, err, { | ||
107 | + body: body, | ||
108 | + type: err.type || 'entity.verify.failed' | ||
109 | + })) | ||
110 | + return | ||
111 | + } | ||
112 | + } | ||
113 | + | ||
114 | + // parse | ||
115 | + var str = body | ||
116 | + try { | ||
117 | + debug('parse body') | ||
118 | + str = typeof body !== 'string' && encoding !== null | ||
119 | + ? iconv.decode(body, encoding) | ||
120 | + : body | ||
121 | + req.body = parse(str) | ||
122 | + } catch (err) { | ||
123 | + next(createError(400, err, { | ||
124 | + body: str, | ||
125 | + type: err.type || 'entity.parse.failed' | ||
126 | + })) | ||
127 | + return | ||
128 | + } | ||
129 | + | ||
130 | + next() | ||
131 | + }) | ||
132 | +} | ||
133 | + | ||
134 | +/** | ||
135 | + * Get the content stream of the request. | ||
136 | + * | ||
137 | + * @param {object} req | ||
138 | + * @param {function} debug | ||
139 | + * @param {boolean} [inflate=true] | ||
140 | + * @return {object} | ||
141 | + * @api private | ||
142 | + */ | ||
143 | + | ||
144 | +function contentstream (req, debug, inflate) { | ||
145 | + var encoding = (req.headers['content-encoding'] || 'identity').toLowerCase() | ||
146 | + var length = req.headers['content-length'] | ||
147 | + var stream | ||
148 | + | ||
149 | + debug('content-encoding "%s"', encoding) | ||
150 | + | ||
151 | + if (inflate === false && encoding !== 'identity') { | ||
152 | + throw createError(415, 'content encoding unsupported', { | ||
153 | + encoding: encoding, | ||
154 | + type: 'encoding.unsupported' | ||
155 | + }) | ||
156 | + } | ||
157 | + | ||
158 | + switch (encoding) { | ||
159 | + case 'deflate': | ||
160 | + stream = zlib.createInflate() | ||
161 | + debug('inflate body') | ||
162 | + req.pipe(stream) | ||
163 | + break | ||
164 | + case 'gzip': | ||
165 | + stream = zlib.createGunzip() | ||
166 | + debug('gunzip body') | ||
167 | + req.pipe(stream) | ||
168 | + break | ||
169 | + case 'identity': | ||
170 | + stream = req | ||
171 | + stream.length = length | ||
172 | + break | ||
173 | + default: | ||
174 | + throw createError(415, 'unsupported content encoding "' + encoding + '"', { | ||
175 | + encoding: encoding, | ||
176 | + type: 'encoding.unsupported' | ||
177 | + }) | ||
178 | + } | ||
179 | + | ||
180 | + return stream | ||
181 | +} |
node_modules/body-parser/lib/types/json.js
0 → 100644
1 | +/*! | ||
2 | + * body-parser | ||
3 | + * Copyright(c) 2014 Jonathan Ong | ||
4 | + * Copyright(c) 2014-2015 Douglas Christopher Wilson | ||
5 | + * MIT Licensed | ||
6 | + */ | ||
7 | + | ||
8 | +'use strict' | ||
9 | + | ||
10 | +/** | ||
11 | + * Module dependencies. | ||
12 | + * @private | ||
13 | + */ | ||
14 | + | ||
15 | +var bytes = require('bytes') | ||
16 | +var contentType = require('content-type') | ||
17 | +var createError = require('http-errors') | ||
18 | +var debug = require('debug')('body-parser:json') | ||
19 | +var read = require('../read') | ||
20 | +var typeis = require('type-is') | ||
21 | + | ||
22 | +/** | ||
23 | + * Module exports. | ||
24 | + */ | ||
25 | + | ||
26 | +module.exports = json | ||
27 | + | ||
28 | +/** | ||
29 | + * RegExp to match the first non-space in a string. | ||
30 | + * | ||
31 | + * Allowed whitespace is defined in RFC 7159: | ||
32 | + * | ||
33 | + * ws = *( | ||
34 | + * %x20 / ; Space | ||
35 | + * %x09 / ; Horizontal tab | ||
36 | + * %x0A / ; Line feed or New line | ||
37 | + * %x0D ) ; Carriage return | ||
38 | + */ | ||
39 | + | ||
40 | +var FIRST_CHAR_REGEXP = /^[\x20\x09\x0a\x0d]*(.)/ // eslint-disable-line no-control-regex | ||
41 | + | ||
42 | +/** | ||
43 | + * Create a middleware to parse JSON bodies. | ||
44 | + * | ||
45 | + * @param {object} [options] | ||
46 | + * @return {function} | ||
47 | + * @public | ||
48 | + */ | ||
49 | + | ||
50 | +function json (options) { | ||
51 | + var opts = options || {} | ||
52 | + | ||
53 | + var limit = typeof opts.limit !== 'number' | ||
54 | + ? bytes.parse(opts.limit || '100kb') | ||
55 | + : opts.limit | ||
56 | + var inflate = opts.inflate !== false | ||
57 | + var reviver = opts.reviver | ||
58 | + var strict = opts.strict !== false | ||
59 | + var type = opts.type || 'application/json' | ||
60 | + var verify = opts.verify || false | ||
61 | + | ||
62 | + if (verify !== false && typeof verify !== 'function') { | ||
63 | + throw new TypeError('option verify must be function') | ||
64 | + } | ||
65 | + | ||
66 | + // create the appropriate type checking function | ||
67 | + var shouldParse = typeof type !== 'function' | ||
68 | + ? typeChecker(type) | ||
69 | + : type | ||
70 | + | ||
71 | + function parse (body) { | ||
72 | + if (body.length === 0) { | ||
73 | + // special-case empty json body, as it's a common client-side mistake | ||
74 | + // TODO: maybe make this configurable or part of "strict" option | ||
75 | + return {} | ||
76 | + } | ||
77 | + | ||
78 | + if (strict) { | ||
79 | + var first = firstchar(body) | ||
80 | + | ||
81 | + if (first !== '{' && first !== '[') { | ||
82 | + debug('strict violation') | ||
83 | + throw createStrictSyntaxError(body, first) | ||
84 | + } | ||
85 | + } | ||
86 | + | ||
87 | + try { | ||
88 | + debug('parse json') | ||
89 | + return JSON.parse(body, reviver) | ||
90 | + } catch (e) { | ||
91 | + throw normalizeJsonSyntaxError(e, { | ||
92 | + stack: e.stack | ||
93 | + }) | ||
94 | + } | ||
95 | + } | ||
96 | + | ||
97 | + return function jsonParser (req, res, next) { | ||
98 | + if (req._body) { | ||
99 | + debug('body already parsed') | ||
100 | + next() | ||
101 | + return | ||
102 | + } | ||
103 | + | ||
104 | + req.body = req.body || {} | ||
105 | + | ||
106 | + // skip requests without bodies | ||
107 | + if (!typeis.hasBody(req)) { | ||
108 | + debug('skip empty body') | ||
109 | + next() | ||
110 | + return | ||
111 | + } | ||
112 | + | ||
113 | + debug('content-type %j', req.headers['content-type']) | ||
114 | + | ||
115 | + // determine if request should be parsed | ||
116 | + if (!shouldParse(req)) { | ||
117 | + debug('skip parsing') | ||
118 | + next() | ||
119 | + return | ||
120 | + } | ||
121 | + | ||
122 | + // assert charset per RFC 7159 sec 8.1 | ||
123 | + var charset = getCharset(req) || 'utf-8' | ||
124 | + if (charset.substr(0, 4) !== 'utf-') { | ||
125 | + debug('invalid charset') | ||
126 | + next(createError(415, 'unsupported charset "' + charset.toUpperCase() + '"', { | ||
127 | + charset: charset, | ||
128 | + type: 'charset.unsupported' | ||
129 | + })) | ||
130 | + return | ||
131 | + } | ||
132 | + | ||
133 | + // read | ||
134 | + read(req, res, next, parse, debug, { | ||
135 | + encoding: charset, | ||
136 | + inflate: inflate, | ||
137 | + limit: limit, | ||
138 | + verify: verify | ||
139 | + }) | ||
140 | + } | ||
141 | +} | ||
142 | + | ||
143 | +/** | ||
144 | + * Create strict violation syntax error matching native error. | ||
145 | + * | ||
146 | + * @param {string} str | ||
147 | + * @param {string} char | ||
148 | + * @return {Error} | ||
149 | + * @private | ||
150 | + */ | ||
151 | + | ||
152 | +function createStrictSyntaxError (str, char) { | ||
153 | + var index = str.indexOf(char) | ||
154 | + var partial = str.substring(0, index) + '#' | ||
155 | + | ||
156 | + try { | ||
157 | + JSON.parse(partial); /* istanbul ignore next */ throw new SyntaxError('strict violation') | ||
158 | + } catch (e) { | ||
159 | + return normalizeJsonSyntaxError(e, { | ||
160 | + message: e.message.replace('#', char), | ||
161 | + stack: e.stack | ||
162 | + }) | ||
163 | + } | ||
164 | +} | ||
165 | + | ||
166 | +/** | ||
167 | + * Get the first non-whitespace character in a string. | ||
168 | + * | ||
169 | + * @param {string} str | ||
170 | + * @return {function} | ||
171 | + * @private | ||
172 | + */ | ||
173 | + | ||
174 | +function firstchar (str) { | ||
175 | + return FIRST_CHAR_REGEXP.exec(str)[1] | ||
176 | +} | ||
177 | + | ||
178 | +/** | ||
179 | + * Get the charset of a request. | ||
180 | + * | ||
181 | + * @param {object} req | ||
182 | + * @api private | ||
183 | + */ | ||
184 | + | ||
185 | +function getCharset (req) { | ||
186 | + try { | ||
187 | + return (contentType.parse(req).parameters.charset || '').toLowerCase() | ||
188 | + } catch (e) { | ||
189 | + return undefined | ||
190 | + } | ||
191 | +} | ||
192 | + | ||
193 | +/** | ||
194 | + * Normalize a SyntaxError for JSON.parse. | ||
195 | + * | ||
196 | + * @param {SyntaxError} error | ||
197 | + * @param {object} obj | ||
198 | + * @return {SyntaxError} | ||
199 | + */ | ||
200 | + | ||
201 | +function normalizeJsonSyntaxError (error, obj) { | ||
202 | + var keys = Object.getOwnPropertyNames(error) | ||
203 | + | ||
204 | + for (var i = 0; i < keys.length; i++) { | ||
205 | + var key = keys[i] | ||
206 | + if (key !== 'stack' && key !== 'message') { | ||
207 | + delete error[key] | ||
208 | + } | ||
209 | + } | ||
210 | + | ||
211 | + var props = Object.keys(obj) | ||
212 | + | ||
213 | + for (var j = 0; j < props.length; j++) { | ||
214 | + var prop = props[j] | ||
215 | + error[prop] = obj[prop] | ||
216 | + } | ||
217 | + | ||
218 | + return error | ||
219 | +} | ||
220 | + | ||
221 | +/** | ||
222 | + * Get the simple type checker. | ||
223 | + * | ||
224 | + * @param {string} type | ||
225 | + * @return {function} | ||
226 | + */ | ||
227 | + | ||
228 | +function typeChecker (type) { | ||
229 | + return function checkType (req) { | ||
230 | + return Boolean(typeis(req, type)) | ||
231 | + } | ||
232 | +} |
node_modules/body-parser/lib/types/raw.js
0 → 100644
1 | +/*! | ||
2 | + * body-parser | ||
3 | + * Copyright(c) 2014-2015 Douglas Christopher Wilson | ||
4 | + * MIT Licensed | ||
5 | + */ | ||
6 | + | ||
7 | +'use strict' | ||
8 | + | ||
9 | +/** | ||
10 | + * Module dependencies. | ||
11 | + */ | ||
12 | + | ||
13 | +var bytes = require('bytes') | ||
14 | +var debug = require('debug')('body-parser:raw') | ||
15 | +var read = require('../read') | ||
16 | +var typeis = require('type-is') | ||
17 | + | ||
18 | +/** | ||
19 | + * Module exports. | ||
20 | + */ | ||
21 | + | ||
22 | +module.exports = raw | ||
23 | + | ||
24 | +/** | ||
25 | + * Create a middleware to parse raw bodies. | ||
26 | + * | ||
27 | + * @param {object} [options] | ||
28 | + * @return {function} | ||
29 | + * @api public | ||
30 | + */ | ||
31 | + | ||
32 | +function raw (options) { | ||
33 | + var opts = options || {} | ||
34 | + | ||
35 | + var inflate = opts.inflate !== false | ||
36 | + var limit = typeof opts.limit !== 'number' | ||
37 | + ? bytes.parse(opts.limit || '100kb') | ||
38 | + : opts.limit | ||
39 | + var type = opts.type || 'application/octet-stream' | ||
40 | + var verify = opts.verify || false | ||
41 | + | ||
42 | + if (verify !== false && typeof verify !== 'function') { | ||
43 | + throw new TypeError('option verify must be function') | ||
44 | + } | ||
45 | + | ||
46 | + // create the appropriate type checking function | ||
47 | + var shouldParse = typeof type !== 'function' | ||
48 | + ? typeChecker(type) | ||
49 | + : type | ||
50 | + | ||
51 | + function parse (buf) { | ||
52 | + return buf | ||
53 | + } | ||
54 | + | ||
55 | + return function rawParser (req, res, next) { | ||
56 | + if (req._body) { | ||
57 | + debug('body already parsed') | ||
58 | + next() | ||
59 | + return | ||
60 | + } | ||
61 | + | ||
62 | + req.body = req.body || {} | ||
63 | + | ||
64 | + // skip requests without bodies | ||
65 | + if (!typeis.hasBody(req)) { | ||
66 | + debug('skip empty body') | ||
67 | + next() | ||
68 | + return | ||
69 | + } | ||
70 | + | ||
71 | + debug('content-type %j', req.headers['content-type']) | ||
72 | + | ||
73 | + // determine if request should be parsed | ||
74 | + if (!shouldParse(req)) { | ||
75 | + debug('skip parsing') | ||
76 | + next() | ||
77 | + return | ||
78 | + } | ||
79 | + | ||
80 | + // read | ||
81 | + read(req, res, next, parse, debug, { | ||
82 | + encoding: null, | ||
83 | + inflate: inflate, | ||
84 | + limit: limit, | ||
85 | + verify: verify | ||
86 | + }) | ||
87 | + } | ||
88 | +} | ||
89 | + | ||
90 | +/** | ||
91 | + * Get the simple type checker. | ||
92 | + * | ||
93 | + * @param {string} type | ||
94 | + * @return {function} | ||
95 | + */ | ||
96 | + | ||
97 | +function typeChecker (type) { | ||
98 | + return function checkType (req) { | ||
99 | + return Boolean(typeis(req, type)) | ||
100 | + } | ||
101 | +} |
node_modules/body-parser/lib/types/text.js
0 → 100644
1 | +/*! | ||
2 | + * body-parser | ||
3 | + * Copyright(c) 2014-2015 Douglas Christopher Wilson | ||
4 | + * MIT Licensed | ||
5 | + */ | ||
6 | + | ||
7 | +'use strict' | ||
8 | + | ||
9 | +/** | ||
10 | + * Module dependencies. | ||
11 | + */ | ||
12 | + | ||
13 | +var bytes = require('bytes') | ||
14 | +var contentType = require('content-type') | ||
15 | +var debug = require('debug')('body-parser:text') | ||
16 | +var read = require('../read') | ||
17 | +var typeis = require('type-is') | ||
18 | + | ||
19 | +/** | ||
20 | + * Module exports. | ||
21 | + */ | ||
22 | + | ||
23 | +module.exports = text | ||
24 | + | ||
25 | +/** | ||
26 | + * Create a middleware to parse text bodies. | ||
27 | + * | ||
28 | + * @param {object} [options] | ||
29 | + * @return {function} | ||
30 | + * @api public | ||
31 | + */ | ||
32 | + | ||
33 | +function text (options) { | ||
34 | + var opts = options || {} | ||
35 | + | ||
36 | + var defaultCharset = opts.defaultCharset || 'utf-8' | ||
37 | + var inflate = opts.inflate !== false | ||
38 | + var limit = typeof opts.limit !== 'number' | ||
39 | + ? bytes.parse(opts.limit || '100kb') | ||
40 | + : opts.limit | ||
41 | + var type = opts.type || 'text/plain' | ||
42 | + var verify = opts.verify || false | ||
43 | + | ||
44 | + if (verify !== false && typeof verify !== 'function') { | ||
45 | + throw new TypeError('option verify must be function') | ||
46 | + } | ||
47 | + | ||
48 | + // create the appropriate type checking function | ||
49 | + var shouldParse = typeof type !== 'function' | ||
50 | + ? typeChecker(type) | ||
51 | + : type | ||
52 | + | ||
53 | + function parse (buf) { | ||
54 | + return buf | ||
55 | + } | ||
56 | + | ||
57 | + return function textParser (req, res, next) { | ||
58 | + if (req._body) { | ||
59 | + debug('body already parsed') | ||
60 | + next() | ||
61 | + return | ||
62 | + } | ||
63 | + | ||
64 | + req.body = req.body || {} | ||
65 | + | ||
66 | + // skip requests without bodies | ||
67 | + if (!typeis.hasBody(req)) { | ||
68 | + debug('skip empty body') | ||
69 | + next() | ||
70 | + return | ||
71 | + } | ||
72 | + | ||
73 | + debug('content-type %j', req.headers['content-type']) | ||
74 | + | ||
75 | + // determine if request should be parsed | ||
76 | + if (!shouldParse(req)) { | ||
77 | + debug('skip parsing') | ||
78 | + next() | ||
79 | + return | ||
80 | + } | ||
81 | + | ||
82 | + // get charset | ||
83 | + var charset = getCharset(req) || defaultCharset | ||
84 | + | ||
85 | + // read | ||
86 | + read(req, res, next, parse, debug, { | ||
87 | + encoding: charset, | ||
88 | + inflate: inflate, | ||
89 | + limit: limit, | ||
90 | + verify: verify | ||
91 | + }) | ||
92 | + } | ||
93 | +} | ||
94 | + | ||
95 | +/** | ||
96 | + * Get the charset of a request. | ||
97 | + * | ||
98 | + * @param {object} req | ||
99 | + * @api private | ||
100 | + */ | ||
101 | + | ||
102 | +function getCharset (req) { | ||
103 | + try { | ||
104 | + return (contentType.parse(req).parameters.charset || '').toLowerCase() | ||
105 | + } catch (e) { | ||
106 | + return undefined | ||
107 | + } | ||
108 | +} | ||
109 | + | ||
110 | +/** | ||
111 | + * Get the simple type checker. | ||
112 | + * | ||
113 | + * @param {string} type | ||
114 | + * @return {function} | ||
115 | + */ | ||
116 | + | ||
117 | +function typeChecker (type) { | ||
118 | + return function checkType (req) { | ||
119 | + return Boolean(typeis(req, type)) | ||
120 | + } | ||
121 | +} |
1 | +/*! | ||
2 | + * body-parser | ||
3 | + * Copyright(c) 2014 Jonathan Ong | ||
4 | + * Copyright(c) 2014-2015 Douglas Christopher Wilson | ||
5 | + * MIT Licensed | ||
6 | + */ | ||
7 | + | ||
8 | +'use strict' | ||
9 | + | ||
10 | +/** | ||
11 | + * Module dependencies. | ||
12 | + * @private | ||
13 | + */ | ||
14 | + | ||
15 | +var bytes = require('bytes') | ||
16 | +var contentType = require('content-type') | ||
17 | +var createError = require('http-errors') | ||
18 | +var debug = require('debug')('body-parser:urlencoded') | ||
19 | +var deprecate = require('depd')('body-parser') | ||
20 | +var read = require('../read') | ||
21 | +var typeis = require('type-is') | ||
22 | + | ||
23 | +/** | ||
24 | + * Module exports. | ||
25 | + */ | ||
26 | + | ||
27 | +module.exports = urlencoded | ||
28 | + | ||
29 | +/** | ||
30 | + * Cache of parser modules. | ||
31 | + */ | ||
32 | + | ||
33 | +var parsers = Object.create(null) | ||
34 | + | ||
35 | +/** | ||
36 | + * Create a middleware to parse urlencoded bodies. | ||
37 | + * | ||
38 | + * @param {object} [options] | ||
39 | + * @return {function} | ||
40 | + * @public | ||
41 | + */ | ||
42 | + | ||
43 | +function urlencoded (options) { | ||
44 | + var opts = options || {} | ||
45 | + | ||
46 | + // notice because option default will flip in next major | ||
47 | + if (opts.extended === undefined) { | ||
48 | + deprecate('undefined extended: provide extended option') | ||
49 | + } | ||
50 | + | ||
51 | + var extended = opts.extended !== false | ||
52 | + var inflate = opts.inflate !== false | ||
53 | + var limit = typeof opts.limit !== 'number' | ||
54 | + ? bytes.parse(opts.limit || '100kb') | ||
55 | + : opts.limit | ||
56 | + var type = opts.type || 'application/x-www-form-urlencoded' | ||
57 | + var verify = opts.verify || false | ||
58 | + | ||
59 | + if (verify !== false && typeof verify !== 'function') { | ||
60 | + throw new TypeError('option verify must be function') | ||
61 | + } | ||
62 | + | ||
63 | + // create the appropriate query parser | ||
64 | + var queryparse = extended | ||
65 | + ? extendedparser(opts) | ||
66 | + : simpleparser(opts) | ||
67 | + | ||
68 | + // create the appropriate type checking function | ||
69 | + var shouldParse = typeof type !== 'function' | ||
70 | + ? typeChecker(type) | ||
71 | + : type | ||
72 | + | ||
73 | + function parse (body) { | ||
74 | + return body.length | ||
75 | + ? queryparse(body) | ||
76 | + : {} | ||
77 | + } | ||
78 | + | ||
79 | + return function urlencodedParser (req, res, next) { | ||
80 | + if (req._body) { | ||
81 | + debug('body already parsed') | ||
82 | + next() | ||
83 | + return | ||
84 | + } | ||
85 | + | ||
86 | + req.body = req.body || {} | ||
87 | + | ||
88 | + // skip requests without bodies | ||
89 | + if (!typeis.hasBody(req)) { | ||
90 | + debug('skip empty body') | ||
91 | + next() | ||
92 | + return | ||
93 | + } | ||
94 | + | ||
95 | + debug('content-type %j', req.headers['content-type']) | ||
96 | + | ||
97 | + // determine if request should be parsed | ||
98 | + if (!shouldParse(req)) { | ||
99 | + debug('skip parsing') | ||
100 | + next() | ||
101 | + return | ||
102 | + } | ||
103 | + | ||
104 | + // assert charset | ||
105 | + var charset = getCharset(req) || 'utf-8' | ||
106 | + if (charset !== 'utf-8') { | ||
107 | + debug('invalid charset') | ||
108 | + next(createError(415, 'unsupported charset "' + charset.toUpperCase() + '"', { | ||
109 | + charset: charset, | ||
110 | + type: 'charset.unsupported' | ||
111 | + })) | ||
112 | + return | ||
113 | + } | ||
114 | + | ||
115 | + // read | ||
116 | + read(req, res, next, parse, debug, { | ||
117 | + debug: debug, | ||
118 | + encoding: charset, | ||
119 | + inflate: inflate, | ||
120 | + limit: limit, | ||
121 | + verify: verify | ||
122 | + }) | ||
123 | + } | ||
124 | +} | ||
125 | + | ||
126 | +/** | ||
127 | + * Get the extended query parser. | ||
128 | + * | ||
129 | + * @param {object} options | ||
130 | + */ | ||
131 | + | ||
132 | +function extendedparser (options) { | ||
133 | + var parameterLimit = options.parameterLimit !== undefined | ||
134 | + ? options.parameterLimit | ||
135 | + : 1000 | ||
136 | + var parse = parser('qs') | ||
137 | + | ||
138 | + if (isNaN(parameterLimit) || parameterLimit < 1) { | ||
139 | + throw new TypeError('option parameterLimit must be a positive number') | ||
140 | + } | ||
141 | + | ||
142 | + if (isFinite(parameterLimit)) { | ||
143 | + parameterLimit = parameterLimit | 0 | ||
144 | + } | ||
145 | + | ||
146 | + return function queryparse (body) { | ||
147 | + var paramCount = parameterCount(body, parameterLimit) | ||
148 | + | ||
149 | + if (paramCount === undefined) { | ||
150 | + debug('too many parameters') | ||
151 | + throw createError(413, 'too many parameters', { | ||
152 | + type: 'parameters.too.many' | ||
153 | + }) | ||
154 | + } | ||
155 | + | ||
156 | + var arrayLimit = Math.max(100, paramCount) | ||
157 | + | ||
158 | + debug('parse extended urlencoding') | ||
159 | + return parse(body, { | ||
160 | + allowPrototypes: true, | ||
161 | + arrayLimit: arrayLimit, | ||
162 | + depth: Infinity, | ||
163 | + parameterLimit: parameterLimit | ||
164 | + }) | ||
165 | + } | ||
166 | +} | ||
167 | + | ||
168 | +/** | ||
169 | + * Get the charset of a request. | ||
170 | + * | ||
171 | + * @param {object} req | ||
172 | + * @api private | ||
173 | + */ | ||
174 | + | ||
175 | +function getCharset (req) { | ||
176 | + try { | ||
177 | + return (contentType.parse(req).parameters.charset || '').toLowerCase() | ||
178 | + } catch (e) { | ||
179 | + return undefined | ||
180 | + } | ||
181 | +} | ||
182 | + | ||
183 | +/** | ||
184 | + * Count the number of parameters, stopping once limit reached | ||
185 | + * | ||
186 | + * @param {string} body | ||
187 | + * @param {number} limit | ||
188 | + * @api private | ||
189 | + */ | ||
190 | + | ||
191 | +function parameterCount (body, limit) { | ||
192 | + var count = 0 | ||
193 | + var index = 0 | ||
194 | + | ||
195 | + while ((index = body.indexOf('&', index)) !== -1) { | ||
196 | + count++ | ||
197 | + index++ | ||
198 | + | ||
199 | + if (count === limit) { | ||
200 | + return undefined | ||
201 | + } | ||
202 | + } | ||
203 | + | ||
204 | + return count | ||
205 | +} | ||
206 | + | ||
207 | +/** | ||
208 | + * Get parser for module name dynamically. | ||
209 | + * | ||
210 | + * @param {string} name | ||
211 | + * @return {function} | ||
212 | + * @api private | ||
213 | + */ | ||
214 | + | ||
215 | +function parser (name) { | ||
216 | + var mod = parsers[name] | ||
217 | + | ||
218 | + if (mod !== undefined) { | ||
219 | + return mod.parse | ||
220 | + } | ||
221 | + | ||
222 | + // this uses a switch for static require analysis | ||
223 | + switch (name) { | ||
224 | + case 'qs': | ||
225 | + mod = require('qs') | ||
226 | + break | ||
227 | + case 'querystring': | ||
228 | + mod = require('querystring') | ||
229 | + break | ||
230 | + } | ||
231 | + | ||
232 | + // store to prevent invoking require() | ||
233 | + parsers[name] = mod | ||
234 | + | ||
235 | + return mod.parse | ||
236 | +} | ||
237 | + | ||
238 | +/** | ||
239 | + * Get the simple query parser. | ||
240 | + * | ||
241 | + * @param {object} options | ||
242 | + */ | ||
243 | + | ||
244 | +function simpleparser (options) { | ||
245 | + var parameterLimit = options.parameterLimit !== undefined | ||
246 | + ? options.parameterLimit | ||
247 | + : 1000 | ||
248 | + var parse = parser('querystring') | ||
249 | + | ||
250 | + if (isNaN(parameterLimit) || parameterLimit < 1) { | ||
251 | + throw new TypeError('option parameterLimit must be a positive number') | ||
252 | + } | ||
253 | + | ||
254 | + if (isFinite(parameterLimit)) { | ||
255 | + parameterLimit = parameterLimit | 0 | ||
256 | + } | ||
257 | + | ||
258 | + return function queryparse (body) { | ||
259 | + var paramCount = parameterCount(body, parameterLimit) | ||
260 | + | ||
261 | + if (paramCount === undefined) { | ||
262 | + debug('too many parameters') | ||
263 | + throw createError(413, 'too many parameters', { | ||
264 | + type: 'parameters.too.many' | ||
265 | + }) | ||
266 | + } | ||
267 | + | ||
268 | + debug('parse urlencoding') | ||
269 | + return parse(body, undefined, undefined, {maxKeys: parameterLimit}) | ||
270 | + } | ||
271 | +} | ||
272 | + | ||
273 | +/** | ||
274 | + * Get the simple type checker. | ||
275 | + * | ||
276 | + * @param {string} type | ||
277 | + * @return {function} | ||
278 | + */ | ||
279 | + | ||
280 | +function typeChecker (type) { | ||
281 | + return function checkType (req) { | ||
282 | + return Boolean(typeis(req, type)) | ||
283 | + } | ||
284 | +} |
node_modules/body-parser/package.json
0 → 100644
1 | +{ | ||
2 | + "_from": "body-parser", | ||
3 | + "_id": "body-parser@1.18.2", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", | ||
6 | + "_location": "/body-parser", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "tag", | ||
10 | + "registry": true, | ||
11 | + "raw": "body-parser", | ||
12 | + "name": "body-parser", | ||
13 | + "escapedName": "body-parser", | ||
14 | + "rawSpec": "", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "latest" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "#USER", | ||
20 | + "/", | ||
21 | + "/express" | ||
22 | + ], | ||
23 | + "_resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", | ||
24 | + "_shasum": "87678a19d84b47d859b83199bd59bce222b10454", | ||
25 | + "_spec": "body-parser", | ||
26 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project", | ||
27 | + "bugs": { | ||
28 | + "url": "https://github.com/expressjs/body-parser/issues" | ||
29 | + }, | ||
30 | + "bundleDependencies": false, | ||
31 | + "contributors": [ | ||
32 | + { | ||
33 | + "name": "Douglas Christopher Wilson", | ||
34 | + "email": "doug@somethingdoug.com" | ||
35 | + }, | ||
36 | + { | ||
37 | + "name": "Jonathan Ong", | ||
38 | + "email": "me@jongleberry.com", | ||
39 | + "url": "http://jongleberry.com" | ||
40 | + } | ||
41 | + ], | ||
42 | + "dependencies": { | ||
43 | + "bytes": "3.0.0", | ||
44 | + "content-type": "~1.0.4", | ||
45 | + "debug": "2.6.9", | ||
46 | + "depd": "~1.1.1", | ||
47 | + "http-errors": "~1.6.2", | ||
48 | + "iconv-lite": "0.4.19", | ||
49 | + "on-finished": "~2.3.0", | ||
50 | + "qs": "6.5.1", | ||
51 | + "raw-body": "2.3.2", | ||
52 | + "type-is": "~1.6.15" | ||
53 | + }, | ||
54 | + "deprecated": false, | ||
55 | + "description": "Node.js body parsing middleware", | ||
56 | + "devDependencies": { | ||
57 | + "eslint": "3.19.0", | ||
58 | + "eslint-config-standard": "10.2.1", | ||
59 | + "eslint-plugin-import": "2.7.0", | ||
60 | + "eslint-plugin-markdown": "1.0.0-beta.6", | ||
61 | + "eslint-plugin-node": "5.1.1", | ||
62 | + "eslint-plugin-promise": "3.5.0", | ||
63 | + "eslint-plugin-standard": "3.0.1", | ||
64 | + "istanbul": "0.4.5", | ||
65 | + "methods": "1.1.2", | ||
66 | + "mocha": "2.5.3", | ||
67 | + "safe-buffer": "5.1.1", | ||
68 | + "supertest": "1.1.0" | ||
69 | + }, | ||
70 | + "engines": { | ||
71 | + "node": ">= 0.8" | ||
72 | + }, | ||
73 | + "files": [ | ||
74 | + "lib/", | ||
75 | + "LICENSE", | ||
76 | + "HISTORY.md", | ||
77 | + "index.js" | ||
78 | + ], | ||
79 | + "homepage": "https://github.com/expressjs/body-parser#readme", | ||
80 | + "license": "MIT", | ||
81 | + "name": "body-parser", | ||
82 | + "repository": { | ||
83 | + "type": "git", | ||
84 | + "url": "git+https://github.com/expressjs/body-parser.git" | ||
85 | + }, | ||
86 | + "scripts": { | ||
87 | + "lint": "eslint --plugin markdown --ext js,md .", | ||
88 | + "test": "mocha --require test/support/env --reporter spec --check-leaks --bail test/", | ||
89 | + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/", | ||
90 | + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --require test/support/env --reporter spec --check-leaks test/" | ||
91 | + }, | ||
92 | + "version": "1.18.2" | ||
93 | +} |
node_modules/bytes/History.md
0 → 100644
1 | +3.0.0 / 2017-08-31 | ||
2 | +================== | ||
3 | + | ||
4 | + * Change "kB" to "KB" in format output | ||
5 | + * Remove support for Node.js 0.6 | ||
6 | + * Remove support for ComponentJS | ||
7 | + | ||
8 | +2.5.0 / 2017-03-24 | ||
9 | +================== | ||
10 | + | ||
11 | + * Add option "unit" | ||
12 | + | ||
13 | +2.4.0 / 2016-06-01 | ||
14 | +================== | ||
15 | + | ||
16 | + * Add option "unitSeparator" | ||
17 | + | ||
18 | +2.3.0 / 2016-02-15 | ||
19 | +================== | ||
20 | + | ||
21 | + * Drop partial bytes on all parsed units | ||
22 | + * Fix non-finite numbers to `.format` to return `null` | ||
23 | + * Fix parsing byte string that looks like hex | ||
24 | + * perf: hoist regular expressions | ||
25 | + | ||
26 | +2.2.0 / 2015-11-13 | ||
27 | +================== | ||
28 | + | ||
29 | + * add option "decimalPlaces" | ||
30 | + * add option "fixedDecimals" | ||
31 | + | ||
32 | +2.1.0 / 2015-05-21 | ||
33 | +================== | ||
34 | + | ||
35 | + * add `.format` export | ||
36 | + * add `.parse` export | ||
37 | + | ||
38 | +2.0.2 / 2015-05-20 | ||
39 | +================== | ||
40 | + | ||
41 | + * remove map recreation | ||
42 | + * remove unnecessary object construction | ||
43 | + | ||
44 | +2.0.1 / 2015-05-07 | ||
45 | +================== | ||
46 | + | ||
47 | + * fix browserify require | ||
48 | + * remove node.extend dependency | ||
49 | + | ||
50 | +2.0.0 / 2015-04-12 | ||
51 | +================== | ||
52 | + | ||
53 | + * add option "case" | ||
54 | + * add option "thousandsSeparator" | ||
55 | + * return "null" on invalid parse input | ||
56 | + * support proper round-trip: bytes(bytes(num)) === num | ||
57 | + * units no longer case sensitive when parsing | ||
58 | + | ||
59 | +1.0.0 / 2014-05-05 | ||
60 | +================== | ||
61 | + | ||
62 | + * add negative support. fixes #6 | ||
63 | + | ||
64 | +0.3.0 / 2014-03-19 | ||
65 | +================== | ||
66 | + | ||
67 | + * added terabyte support | ||
68 | + | ||
69 | +0.2.1 / 2013-04-01 | ||
70 | +================== | ||
71 | + | ||
72 | + * add .component | ||
73 | + | ||
74 | +0.2.0 / 2012-10-28 | ||
75 | +================== | ||
76 | + | ||
77 | + * bytes(200).should.eql('200b') | ||
78 | + | ||
79 | +0.1.0 / 2012-07-04 | ||
80 | +================== | ||
81 | + | ||
82 | + * add bytes to string conversion [yields] |
node_modules/bytes/LICENSE
0 → 100644
1 | +(The MIT License) | ||
2 | + | ||
3 | +Copyright (c) 2012-2014 TJ Holowaychuk <tj@vision-media.ca> | ||
4 | +Copyright (c) 2015 Jed Watson <jed.watson@me.com> | ||
5 | + | ||
6 | +Permission is hereby granted, free of charge, to any person obtaining | ||
7 | +a copy of this software and associated documentation files (the | ||
8 | +'Software'), to deal in the Software without restriction, including | ||
9 | +without limitation the rights to use, copy, modify, merge, publish, | ||
10 | +distribute, sublicense, and/or sell copies of the Software, and to | ||
11 | +permit persons to whom the Software is furnished to do so, subject to | ||
12 | +the following conditions: | ||
13 | + | ||
14 | +The above copyright notice and this permission notice shall be | ||
15 | +included in all copies or substantial portions of the Software. | ||
16 | + | ||
17 | +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, | ||
18 | +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
19 | +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
20 | +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
21 | +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
22 | +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
23 | +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
node_modules/bytes/Readme.md
0 → 100644
1 | +# Bytes utility | ||
2 | + | ||
3 | +[![NPM Version][npm-image]][npm-url] | ||
4 | +[![NPM Downloads][downloads-image]][downloads-url] | ||
5 | +[![Build Status][travis-image]][travis-url] | ||
6 | +[![Test Coverage][coveralls-image]][coveralls-url] | ||
7 | + | ||
8 | +Utility to parse a string bytes (ex: `1TB`) to bytes (`1099511627776`) and vice-versa. | ||
9 | + | ||
10 | +## Installation | ||
11 | + | ||
12 | +This is a [Node.js](https://nodejs.org/en/) module available through the | ||
13 | +[npm registry](https://www.npmjs.com/). Installation is done using the | ||
14 | +[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): | ||
15 | + | ||
16 | +```bash | ||
17 | +$ npm install bytes | ||
18 | +``` | ||
19 | + | ||
20 | +## Usage | ||
21 | + | ||
22 | +```js | ||
23 | +var bytes = require('bytes'); | ||
24 | +``` | ||
25 | + | ||
26 | +#### bytes.format(number value, [options]): string|null | ||
27 | + | ||
28 | +Format the given value in bytes into a string. If the value is negative, it is kept as such. If it is a float, it is | ||
29 | + rounded. | ||
30 | + | ||
31 | +**Arguments** | ||
32 | + | ||
33 | +| Name | Type | Description | | ||
34 | +|---------|----------|--------------------| | ||
35 | +| value | `number` | Value in bytes | | ||
36 | +| options | `Object` | Conversion options | | ||
37 | + | ||
38 | +**Options** | ||
39 | + | ||
40 | +| Property | Type | Description | | ||
41 | +|-------------------|--------|-----------------------------------------------------------------------------------------| | ||
42 | +| decimalPlaces | `number`|`null` | Maximum number of decimal places to include in output. Default value to `2`. | | ||
43 | +| fixedDecimals | `boolean`|`null` | Whether to always display the maximum number of decimal places. Default value to `false` | | ||
44 | +| thousandsSeparator | `string`|`null` | Example of values: `' '`, `','` and `.`... Default value to `''`. | | ||
45 | +| unit | `string`|`null` | The unit in which the result will be returned (B/KB/MB/GB/TB). Default value to `''` (which means auto detect). | | ||
46 | +| unitSeparator | `string`|`null` | Separator to use between number and unit. Default value to `''`. | | ||
47 | + | ||
48 | +**Returns** | ||
49 | + | ||
50 | +| Name | Type | Description | | ||
51 | +|---------|------------------|-------------------------------------------------| | ||
52 | +| results | `string`|`null` | Return null upon error. String value otherwise. | | ||
53 | + | ||
54 | +**Example** | ||
55 | + | ||
56 | +```js | ||
57 | +bytes(1024); | ||
58 | +// output: '1KB' | ||
59 | + | ||
60 | +bytes(1000); | ||
61 | +// output: '1000B' | ||
62 | + | ||
63 | +bytes(1000, {thousandsSeparator: ' '}); | ||
64 | +// output: '1 000B' | ||
65 | + | ||
66 | +bytes(1024 * 1.7, {decimalPlaces: 0}); | ||
67 | +// output: '2KB' | ||
68 | + | ||
69 | +bytes(1024, {unitSeparator: ' '}); | ||
70 | +// output: '1 KB' | ||
71 | + | ||
72 | +``` | ||
73 | + | ||
74 | +#### bytes.parse(string|number value): number|null | ||
75 | + | ||
76 | +Parse the string value into an integer in bytes. If no unit is given, or `value` | ||
77 | +is a number, it is assumed the value is in bytes. | ||
78 | + | ||
79 | +Supported units and abbreviations are as follows and are case-insensitive: | ||
80 | + | ||
81 | + * `b` for bytes | ||
82 | + * `kb` for kilobytes | ||
83 | + * `mb` for megabytes | ||
84 | + * `gb` for gigabytes | ||
85 | + * `tb` for terabytes | ||
86 | + | ||
87 | +The units are in powers of two, not ten. This means 1kb = 1024b according to this parser. | ||
88 | + | ||
89 | +**Arguments** | ||
90 | + | ||
91 | +| Name | Type | Description | | ||
92 | +|---------------|--------|--------------------| | ||
93 | +| value | `string`|`number` | String to parse, or number in bytes. | | ||
94 | + | ||
95 | +**Returns** | ||
96 | + | ||
97 | +| Name | Type | Description | | ||
98 | +|---------|-------------|-------------------------| | ||
99 | +| results | `number`|`null` | Return null upon error. Value in bytes otherwise. | | ||
100 | + | ||
101 | +**Example** | ||
102 | + | ||
103 | +```js | ||
104 | +bytes('1KB'); | ||
105 | +// output: 1024 | ||
106 | + | ||
107 | +bytes('1024'); | ||
108 | +// output: 1024 | ||
109 | + | ||
110 | +bytes(1024); | ||
111 | +// output: 1024 | ||
112 | +``` | ||
113 | + | ||
114 | +## License | ||
115 | + | ||
116 | +[MIT](LICENSE) | ||
117 | + | ||
118 | +[downloads-image]: https://img.shields.io/npm/dm/bytes.svg | ||
119 | +[downloads-url]: https://npmjs.org/package/bytes | ||
120 | +[npm-image]: https://img.shields.io/npm/v/bytes.svg | ||
121 | +[npm-url]: https://npmjs.org/package/bytes | ||
122 | +[travis-image]: https://img.shields.io/travis/visionmedia/bytes.js/master.svg | ||
123 | +[travis-url]: https://travis-ci.org/visionmedia/bytes.js | ||
124 | +[coveralls-image]: https://img.shields.io/coveralls/visionmedia/bytes.js/master.svg | ||
125 | +[coveralls-url]: https://coveralls.io/r/visionmedia/bytes.js?branch=master |
node_modules/bytes/index.js
0 → 100644
1 | +/*! | ||
2 | + * bytes | ||
3 | + * Copyright(c) 2012-2014 TJ Holowaychuk | ||
4 | + * Copyright(c) 2015 Jed Watson | ||
5 | + * MIT Licensed | ||
6 | + */ | ||
7 | + | ||
8 | +'use strict'; | ||
9 | + | ||
10 | +/** | ||
11 | + * Module exports. | ||
12 | + * @public | ||
13 | + */ | ||
14 | + | ||
15 | +module.exports = bytes; | ||
16 | +module.exports.format = format; | ||
17 | +module.exports.parse = parse; | ||
18 | + | ||
19 | +/** | ||
20 | + * Module variables. | ||
21 | + * @private | ||
22 | + */ | ||
23 | + | ||
24 | +var formatThousandsRegExp = /\B(?=(\d{3})+(?!\d))/g; | ||
25 | + | ||
26 | +var formatDecimalsRegExp = /(?:\.0*|(\.[^0]+)0+)$/; | ||
27 | + | ||
28 | +var map = { | ||
29 | + b: 1, | ||
30 | + kb: 1 << 10, | ||
31 | + mb: 1 << 20, | ||
32 | + gb: 1 << 30, | ||
33 | + tb: ((1 << 30) * 1024) | ||
34 | +}; | ||
35 | + | ||
36 | +var parseRegExp = /^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb)$/i; | ||
37 | + | ||
38 | +/** | ||
39 | + * Convert the given value in bytes into a string or parse to string to an integer in bytes. | ||
40 | + * | ||
41 | + * @param {string|number} value | ||
42 | + * @param {{ | ||
43 | + * case: [string], | ||
44 | + * decimalPlaces: [number] | ||
45 | + * fixedDecimals: [boolean] | ||
46 | + * thousandsSeparator: [string] | ||
47 | + * unitSeparator: [string] | ||
48 | + * }} [options] bytes options. | ||
49 | + * | ||
50 | + * @returns {string|number|null} | ||
51 | + */ | ||
52 | + | ||
53 | +function bytes(value, options) { | ||
54 | + if (typeof value === 'string') { | ||
55 | + return parse(value); | ||
56 | + } | ||
57 | + | ||
58 | + if (typeof value === 'number') { | ||
59 | + return format(value, options); | ||
60 | + } | ||
61 | + | ||
62 | + return null; | ||
63 | +} | ||
64 | + | ||
65 | +/** | ||
66 | + * Format the given value in bytes into a string. | ||
67 | + * | ||
68 | + * If the value is negative, it is kept as such. If it is a float, | ||
69 | + * it is rounded. | ||
70 | + * | ||
71 | + * @param {number} value | ||
72 | + * @param {object} [options] | ||
73 | + * @param {number} [options.decimalPlaces=2] | ||
74 | + * @param {number} [options.fixedDecimals=false] | ||
75 | + * @param {string} [options.thousandsSeparator=] | ||
76 | + * @param {string} [options.unit=] | ||
77 | + * @param {string} [options.unitSeparator=] | ||
78 | + * | ||
79 | + * @returns {string|null} | ||
80 | + * @public | ||
81 | + */ | ||
82 | + | ||
83 | +function format(value, options) { | ||
84 | + if (!Number.isFinite(value)) { | ||
85 | + return null; | ||
86 | + } | ||
87 | + | ||
88 | + var mag = Math.abs(value); | ||
89 | + var thousandsSeparator = (options && options.thousandsSeparator) || ''; | ||
90 | + var unitSeparator = (options && options.unitSeparator) || ''; | ||
91 | + var decimalPlaces = (options && options.decimalPlaces !== undefined) ? options.decimalPlaces : 2; | ||
92 | + var fixedDecimals = Boolean(options && options.fixedDecimals); | ||
93 | + var unit = (options && options.unit) || ''; | ||
94 | + | ||
95 | + if (!unit || !map[unit.toLowerCase()]) { | ||
96 | + if (mag >= map.tb) { | ||
97 | + unit = 'TB'; | ||
98 | + } else if (mag >= map.gb) { | ||
99 | + unit = 'GB'; | ||
100 | + } else if (mag >= map.mb) { | ||
101 | + unit = 'MB'; | ||
102 | + } else if (mag >= map.kb) { | ||
103 | + unit = 'KB'; | ||
104 | + } else { | ||
105 | + unit = 'B'; | ||
106 | + } | ||
107 | + } | ||
108 | + | ||
109 | + var val = value / map[unit.toLowerCase()]; | ||
110 | + var str = val.toFixed(decimalPlaces); | ||
111 | + | ||
112 | + if (!fixedDecimals) { | ||
113 | + str = str.replace(formatDecimalsRegExp, '$1'); | ||
114 | + } | ||
115 | + | ||
116 | + if (thousandsSeparator) { | ||
117 | + str = str.replace(formatThousandsRegExp, thousandsSeparator); | ||
118 | + } | ||
119 | + | ||
120 | + return str + unitSeparator + unit; | ||
121 | +} | ||
122 | + | ||
123 | +/** | ||
124 | + * Parse the string value into an integer in bytes. | ||
125 | + * | ||
126 | + * If no unit is given, it is assumed the value is in bytes. | ||
127 | + * | ||
128 | + * @param {number|string} val | ||
129 | + * | ||
130 | + * @returns {number|null} | ||
131 | + * @public | ||
132 | + */ | ||
133 | + | ||
134 | +function parse(val) { | ||
135 | + if (typeof val === 'number' && !isNaN(val)) { | ||
136 | + return val; | ||
137 | + } | ||
138 | + | ||
139 | + if (typeof val !== 'string') { | ||
140 | + return null; | ||
141 | + } | ||
142 | + | ||
143 | + // Test if the string passed is valid | ||
144 | + var results = parseRegExp.exec(val); | ||
145 | + var floatValue; | ||
146 | + var unit = 'b'; | ||
147 | + | ||
148 | + if (!results) { | ||
149 | + // Nothing could be extracted from the given string | ||
150 | + floatValue = parseInt(val, 10); | ||
151 | + unit = 'b' | ||
152 | + } else { | ||
153 | + // Retrieve the value and the unit | ||
154 | + floatValue = parseFloat(results[1]); | ||
155 | + unit = results[4].toLowerCase(); | ||
156 | + } | ||
157 | + | ||
158 | + return Math.floor(map[unit] * floatValue); | ||
159 | +} |
node_modules/bytes/package.json
0 → 100644
1 | +{ | ||
2 | + "_from": "bytes@3.0.0", | ||
3 | + "_id": "bytes@3.0.0", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", | ||
6 | + "_location": "/bytes", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "version", | ||
10 | + "registry": true, | ||
11 | + "raw": "bytes@3.0.0", | ||
12 | + "name": "bytes", | ||
13 | + "escapedName": "bytes", | ||
14 | + "rawSpec": "3.0.0", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "3.0.0" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/body-parser", | ||
20 | + "/raw-body" | ||
21 | + ], | ||
22 | + "_resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", | ||
23 | + "_shasum": "d32815404d689699f85a4ea4fa8755dd13a96048", | ||
24 | + "_spec": "bytes@3.0.0", | ||
25 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project\\node_modules\\body-parser", | ||
26 | + "author": { | ||
27 | + "name": "TJ Holowaychuk", | ||
28 | + "email": "tj@vision-media.ca", | ||
29 | + "url": "http://tjholowaychuk.com" | ||
30 | + }, | ||
31 | + "bugs": { | ||
32 | + "url": "https://github.com/visionmedia/bytes.js/issues" | ||
33 | + }, | ||
34 | + "bundleDependencies": false, | ||
35 | + "contributors": [ | ||
36 | + { | ||
37 | + "name": "Jed Watson", | ||
38 | + "email": "jed.watson@me.com" | ||
39 | + }, | ||
40 | + { | ||
41 | + "name": "Théo FIDRY", | ||
42 | + "email": "theo.fidry@gmail.com" | ||
43 | + } | ||
44 | + ], | ||
45 | + "deprecated": false, | ||
46 | + "description": "Utility to parse a string bytes to bytes and vice-versa", | ||
47 | + "devDependencies": { | ||
48 | + "mocha": "2.5.3", | ||
49 | + "nyc": "10.3.2" | ||
50 | + }, | ||
51 | + "engines": { | ||
52 | + "node": ">= 0.8" | ||
53 | + }, | ||
54 | + "files": [ | ||
55 | + "History.md", | ||
56 | + "LICENSE", | ||
57 | + "Readme.md", | ||
58 | + "index.js" | ||
59 | + ], | ||
60 | + "homepage": "https://github.com/visionmedia/bytes.js#readme", | ||
61 | + "keywords": [ | ||
62 | + "byte", | ||
63 | + "bytes", | ||
64 | + "utility", | ||
65 | + "parse", | ||
66 | + "parser", | ||
67 | + "convert", | ||
68 | + "converter" | ||
69 | + ], | ||
70 | + "license": "MIT", | ||
71 | + "name": "bytes", | ||
72 | + "repository": { | ||
73 | + "type": "git", | ||
74 | + "url": "git+https://github.com/visionmedia/bytes.js.git" | ||
75 | + }, | ||
76 | + "scripts": { | ||
77 | + "test": "mocha --check-leaks --reporter spec", | ||
78 | + "test-ci": "nyc --reporter=text npm test", | ||
79 | + "test-cov": "nyc --reporter=html --reporter=text npm test" | ||
80 | + }, | ||
81 | + "version": "3.0.0" | ||
82 | +} |
node_modules/connect-flash/.travis.yml
0 → 100644
node_modules/connect-flash/LICENSE
0 → 100644
1 | +(The MIT License) | ||
2 | + | ||
3 | +Copyright (c) 2012-2013 Jared Hanson | ||
4 | + | ||
5 | +Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
6 | +this software and associated documentation files (the "Software"), to deal in | ||
7 | +the Software without restriction, including without limitation the rights to | ||
8 | +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
9 | +the Software, and to permit persons to whom the Software is furnished to do so, | ||
10 | +subject to the following conditions: | ||
11 | + | ||
12 | +The above copyright notice and this permission notice shall be included in all | ||
13 | +copies or substantial portions of the Software. | ||
14 | + | ||
15 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
16 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
17 | +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
18 | +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
19 | +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
20 | +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
node_modules/connect-flash/README.md
0 → 100644
1 | +# connect-flash | ||
2 | + | ||
3 | +The flash is a special area of the session used for storing messages. Messages | ||
4 | +are written to the flash and cleared after being displayed to the user. The | ||
5 | +flash is typically used in combination with redirects, ensuring that the message | ||
6 | +is available to the next page that is to be rendered. | ||
7 | + | ||
8 | +This middleware was extracted from [Express](http://expressjs.com/) 2.x, after | ||
9 | +Express 3.x removed direct support for the flash. connect-flash brings this | ||
10 | +functionality back to Express 3.x, as well as any other middleware-compatible | ||
11 | +framework or application. +1 for [radical reusability](http://substack.net/posts/b96642/the-node-js-aesthetic). | ||
12 | + | ||
13 | +## Install | ||
14 | + | ||
15 | + $ npm install connect-flash | ||
16 | + | ||
17 | +## Usage | ||
18 | + | ||
19 | +#### Express 3.x | ||
20 | + | ||
21 | +Flash messages are stored in the session. First, setup sessions as usual by | ||
22 | +enabling `cookieParser` and `session` middleware. Then, use `flash` middleware | ||
23 | +provided by connect-flash. | ||
24 | + | ||
25 | +```javascript | ||
26 | +var flash = require('connect-flash'); | ||
27 | +var app = express(); | ||
28 | + | ||
29 | +app.configure(function() { | ||
30 | + app.use(express.cookieParser('keyboard cat')); | ||
31 | + app.use(express.session({ cookie: { maxAge: 60000 }})); | ||
32 | + app.use(flash()); | ||
33 | +}); | ||
34 | +``` | ||
35 | + | ||
36 | +With the `flash` middleware in place, all requests will have a `req.flash()` function | ||
37 | +that can be used for flash messages. | ||
38 | + | ||
39 | +```javascript | ||
40 | +app.get('/flash', function(req, res){ | ||
41 | + // Set a flash message by passing the key, followed by the value, to req.flash(). | ||
42 | + req.flash('info', 'Flash is back!') | ||
43 | + res.redirect('/'); | ||
44 | +}); | ||
45 | + | ||
46 | +app.get('/', function(req, res){ | ||
47 | + // Get an array of flash messages by passing the key to req.flash() | ||
48 | + res.render('index', { messages: req.flash('info') }); | ||
49 | +}); | ||
50 | +``` | ||
51 | + | ||
52 | +## Examples | ||
53 | + | ||
54 | +For an example using connect-flash in an Express 3.x app, refer to the [express3](https://github.com/jaredhanson/connect-flash/tree/master/examples/express3) | ||
55 | +example. | ||
56 | + | ||
57 | +## Tests | ||
58 | + | ||
59 | + $ npm install --dev | ||
60 | + $ make test | ||
61 | + | ||
62 | +[![Build Status](https://secure.travis-ci.org/jaredhanson/connect-flash.png)](http://travis-ci.org/jaredhanson/connect-flash) | ||
63 | + | ||
64 | +## Credits | ||
65 | + | ||
66 | + - [Jared Hanson](http://github.com/jaredhanson) | ||
67 | + - [TJ Holowaychuk](https://github.com/visionmedia) | ||
68 | + | ||
69 | +## License | ||
70 | + | ||
71 | +[The MIT License](http://opensource.org/licenses/MIT) | ||
72 | + | ||
73 | +Copyright (c) 2012-2013 Jared Hanson <[http://jaredhanson.net/](http://jaredhanson.net/)> |
node_modules/connect-flash/lib/flash.js
0 → 100644
1 | +/** | ||
2 | + * Module dependencies. | ||
3 | + */ | ||
4 | +var format = require('util').format; | ||
5 | +var isArray = require('util').isArray; | ||
6 | + | ||
7 | + | ||
8 | +/** | ||
9 | + * Expose `flash()` function on requests. | ||
10 | + * | ||
11 | + * @return {Function} | ||
12 | + * @api public | ||
13 | + */ | ||
14 | +module.exports = function flash(options) { | ||
15 | + options = options || {}; | ||
16 | + var safe = (options.unsafe === undefined) ? true : !options.unsafe; | ||
17 | + | ||
18 | + return function(req, res, next) { | ||
19 | + if (req.flash && safe) { return next(); } | ||
20 | + req.flash = _flash; | ||
21 | + next(); | ||
22 | + } | ||
23 | +} | ||
24 | + | ||
25 | +/** | ||
26 | + * Queue flash `msg` of the given `type`. | ||
27 | + * | ||
28 | + * Examples: | ||
29 | + * | ||
30 | + * req.flash('info', 'email sent'); | ||
31 | + * req.flash('error', 'email delivery failed'); | ||
32 | + * req.flash('info', 'email re-sent'); | ||
33 | + * // => 2 | ||
34 | + * | ||
35 | + * req.flash('info'); | ||
36 | + * // => ['email sent', 'email re-sent'] | ||
37 | + * | ||
38 | + * req.flash('info'); | ||
39 | + * // => [] | ||
40 | + * | ||
41 | + * req.flash(); | ||
42 | + * // => { error: ['email delivery failed'], info: [] } | ||
43 | + * | ||
44 | + * Formatting: | ||
45 | + * | ||
46 | + * Flash notifications also support arbitrary formatting support. | ||
47 | + * For example you may pass variable arguments to `req.flash()` | ||
48 | + * and use the %s specifier to be replaced by the associated argument: | ||
49 | + * | ||
50 | + * req.flash('info', 'email has been sent to %s.', userName); | ||
51 | + * | ||
52 | + * Formatting uses `util.format()`, which is available on Node 0.6+. | ||
53 | + * | ||
54 | + * @param {String} type | ||
55 | + * @param {String} msg | ||
56 | + * @return {Array|Object|Number} | ||
57 | + * @api public | ||
58 | + */ | ||
59 | +function _flash(type, msg) { | ||
60 | + if (this.session === undefined) throw Error('req.flash() requires sessions'); | ||
61 | + var msgs = this.session.flash = this.session.flash || {}; | ||
62 | + if (type && msg) { | ||
63 | + // util.format is available in Node.js 0.6+ | ||
64 | + if (arguments.length > 2 && format) { | ||
65 | + var args = Array.prototype.slice.call(arguments, 1); | ||
66 | + msg = format.apply(undefined, args); | ||
67 | + } else if (isArray(msg)) { | ||
68 | + msg.forEach(function(val){ | ||
69 | + (msgs[type] = msgs[type] || []).push(val); | ||
70 | + }); | ||
71 | + return msgs[type].length; | ||
72 | + } | ||
73 | + return (msgs[type] = msgs[type] || []).push(msg); | ||
74 | + } else if (type) { | ||
75 | + var arr = msgs[type]; | ||
76 | + delete msgs[type]; | ||
77 | + return arr || []; | ||
78 | + } else { | ||
79 | + this.session.flash = {}; | ||
80 | + return msgs; | ||
81 | + } | ||
82 | +} |
node_modules/connect-flash/lib/index.js
0 → 100644
node_modules/connect-flash/package.json
0 → 100644
1 | +{ | ||
2 | + "_from": "connect-flash", | ||
3 | + "_id": "connect-flash@0.1.1", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha1-2GMPJtlaf4UfmVax6MxnMvO2qjA=", | ||
6 | + "_location": "/connect-flash", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "tag", | ||
10 | + "registry": true, | ||
11 | + "raw": "connect-flash", | ||
12 | + "name": "connect-flash", | ||
13 | + "escapedName": "connect-flash", | ||
14 | + "rawSpec": "", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "latest" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "#DEV:/", | ||
20 | + "#USER" | ||
21 | + ], | ||
22 | + "_resolved": "https://registry.npmjs.org/connect-flash/-/connect-flash-0.1.1.tgz", | ||
23 | + "_shasum": "d8630f26d95a7f851f9956b1e8cc6732f3b6aa30", | ||
24 | + "_spec": "connect-flash", | ||
25 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project", | ||
26 | + "author": { | ||
27 | + "name": "Jared Hanson", | ||
28 | + "email": "jaredhanson@gmail.com", | ||
29 | + "url": "http://www.jaredhanson.net/" | ||
30 | + }, | ||
31 | + "bugs": { | ||
32 | + "url": "http://github.com/jaredhanson/connect-flash/issues" | ||
33 | + }, | ||
34 | + "bundleDependencies": false, | ||
35 | + "dependencies": {}, | ||
36 | + "deprecated": false, | ||
37 | + "description": "Flash message middleware for Connect.", | ||
38 | + "devDependencies": { | ||
39 | + "vows": "0.6.x" | ||
40 | + }, | ||
41 | + "engines": { | ||
42 | + "node": ">= 0.4.0" | ||
43 | + }, | ||
44 | + "homepage": "https://github.com/jaredhanson/connect-flash#readme", | ||
45 | + "keywords": [ | ||
46 | + "connect", | ||
47 | + "express", | ||
48 | + "flash", | ||
49 | + "messages" | ||
50 | + ], | ||
51 | + "licenses": [ | ||
52 | + { | ||
53 | + "type": "MIT", | ||
54 | + "url": "http://www.opensource.org/licenses/MIT" | ||
55 | + } | ||
56 | + ], | ||
57 | + "main": "./lib", | ||
58 | + "name": "connect-flash", | ||
59 | + "repository": { | ||
60 | + "type": "git", | ||
61 | + "url": "git://github.com/jaredhanson/connect-flash.git" | ||
62 | + }, | ||
63 | + "scripts": { | ||
64 | + "test": "NODE_PATH=lib node_modules/.bin/vows test/*-test.js" | ||
65 | + }, | ||
66 | + "version": "0.1.1" | ||
67 | +} |
node_modules/content-disposition/HISTORY.md
0 → 100644
1 | +0.5.2 / 2016-12-08 | ||
2 | +================== | ||
3 | + | ||
4 | + * Fix `parse` to accept any linear whitespace character | ||
5 | + | ||
6 | +0.5.1 / 2016-01-17 | ||
7 | +================== | ||
8 | + | ||
9 | + * perf: enable strict mode | ||
10 | + | ||
11 | +0.5.0 / 2014-10-11 | ||
12 | +================== | ||
13 | + | ||
14 | + * Add `parse` function | ||
15 | + | ||
16 | +0.4.0 / 2014-09-21 | ||
17 | +================== | ||
18 | + | ||
19 | + * Expand non-Unicode `filename` to the full ISO-8859-1 charset | ||
20 | + | ||
21 | +0.3.0 / 2014-09-20 | ||
22 | +================== | ||
23 | + | ||
24 | + * Add `fallback` option | ||
25 | + * Add `type` option | ||
26 | + | ||
27 | +0.2.0 / 2014-09-19 | ||
28 | +================== | ||
29 | + | ||
30 | + * Reduce ambiguity of file names with hex escape in buggy browsers | ||
31 | + | ||
32 | +0.1.2 / 2014-09-19 | ||
33 | +================== | ||
34 | + | ||
35 | + * Fix periodic invalid Unicode filename header | ||
36 | + | ||
37 | +0.1.1 / 2014-09-19 | ||
38 | +================== | ||
39 | + | ||
40 | + * Fix invalid characters appearing in `filename*` parameter | ||
41 | + | ||
42 | +0.1.0 / 2014-09-18 | ||
43 | +================== | ||
44 | + | ||
45 | + * Make the `filename` argument optional | ||
46 | + | ||
47 | +0.0.0 / 2014-09-18 | ||
48 | +================== | ||
49 | + | ||
50 | + * Initial release |
node_modules/content-disposition/LICENSE
0 → 100644
1 | +(The MIT License) | ||
2 | + | ||
3 | +Copyright (c) 2014 Douglas Christopher Wilson | ||
4 | + | ||
5 | +Permission is hereby granted, free of charge, to any person obtaining | ||
6 | +a copy of this software and associated documentation files (the | ||
7 | +'Software'), to deal in the Software without restriction, including | ||
8 | +without limitation the rights to use, copy, modify, merge, publish, | ||
9 | +distribute, sublicense, and/or sell copies of the Software, and to | ||
10 | +permit persons to whom the Software is furnished to do so, subject to | ||
11 | +the following conditions: | ||
12 | + | ||
13 | +The above copyright notice and this permission notice shall be | ||
14 | +included in all copies or substantial portions of the Software. | ||
15 | + | ||
16 | +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, | ||
17 | +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
18 | +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
19 | +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
20 | +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
21 | +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
22 | +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
node_modules/content-disposition/README.md
0 → 100644
1 | +# content-disposition | ||
2 | + | ||
3 | +[![NPM Version][npm-image]][npm-url] | ||
4 | +[![NPM Downloads][downloads-image]][downloads-url] | ||
5 | +[![Node.js Version][node-version-image]][node-version-url] | ||
6 | +[![Build Status][travis-image]][travis-url] | ||
7 | +[![Test Coverage][coveralls-image]][coveralls-url] | ||
8 | + | ||
9 | +Create and parse HTTP `Content-Disposition` header | ||
10 | + | ||
11 | +## Installation | ||
12 | + | ||
13 | +```sh | ||
14 | +$ npm install content-disposition | ||
15 | +``` | ||
16 | + | ||
17 | +## API | ||
18 | + | ||
19 | +```js | ||
20 | +var contentDisposition = require('content-disposition') | ||
21 | +``` | ||
22 | + | ||
23 | +### contentDisposition(filename, options) | ||
24 | + | ||
25 | +Create an attachment `Content-Disposition` header value using the given file name, | ||
26 | +if supplied. The `filename` is optional and if no file name is desired, but you | ||
27 | +want to specify `options`, set `filename` to `undefined`. | ||
28 | + | ||
29 | +```js | ||
30 | +res.setHeader('Content-Disposition', contentDisposition('∫ maths.pdf')) | ||
31 | +``` | ||
32 | + | ||
33 | +**note** HTTP headers are of the ISO-8859-1 character set. If you are writing this | ||
34 | +header through a means different from `setHeader` in Node.js, you'll want to specify | ||
35 | +the `'binary'` encoding in Node.js. | ||
36 | + | ||
37 | +#### Options | ||
38 | + | ||
39 | +`contentDisposition` accepts these properties in the options object. | ||
40 | + | ||
41 | +##### fallback | ||
42 | + | ||
43 | +If the `filename` option is outside ISO-8859-1, then the file name is actually | ||
44 | +stored in a supplemental field for clients that support Unicode file names and | ||
45 | +a ISO-8859-1 version of the file name is automatically generated. | ||
46 | + | ||
47 | +This specifies the ISO-8859-1 file name to override the automatic generation or | ||
48 | +disables the generation all together, defaults to `true`. | ||
49 | + | ||
50 | + - A string will specify the ISO-8859-1 file name to use in place of automatic | ||
51 | + generation. | ||
52 | + - `false` will disable including a ISO-8859-1 file name and only include the | ||
53 | + Unicode version (unless the file name is already ISO-8859-1). | ||
54 | + - `true` will enable automatic generation if the file name is outside ISO-8859-1. | ||
55 | + | ||
56 | +If the `filename` option is ISO-8859-1 and this option is specified and has a | ||
57 | +different value, then the `filename` option is encoded in the extended field | ||
58 | +and this set as the fallback field, even though they are both ISO-8859-1. | ||
59 | + | ||
60 | +##### type | ||
61 | + | ||
62 | +Specifies the disposition type, defaults to `"attachment"`. This can also be | ||
63 | +`"inline"`, or any other value (all values except inline are treated like | ||
64 | +`attachment`, but can convey additional information if both parties agree to | ||
65 | +it). The type is normalized to lower-case. | ||
66 | + | ||
67 | +### contentDisposition.parse(string) | ||
68 | + | ||
69 | +```js | ||
70 | +var disposition = contentDisposition.parse('attachment; filename="EURO rates.txt"; filename*=UTF-8\'\'%e2%82%ac%20rates.txt'); | ||
71 | +``` | ||
72 | + | ||
73 | +Parse a `Content-Disposition` header string. This automatically handles extended | ||
74 | +("Unicode") parameters by decoding them and providing them under the standard | ||
75 | +parameter name. This will return an object with the following properties (examples | ||
76 | +are shown for the string `'attachment; filename="EURO rates.txt"; filename*=UTF-8\'\'%e2%82%ac%20rates.txt'`): | ||
77 | + | ||
78 | + - `type`: The disposition type (always lower case). Example: `'attachment'` | ||
79 | + | ||
80 | + - `parameters`: An object of the parameters in the disposition (name of parameter | ||
81 | + always lower case and extended versions replace non-extended versions). Example: | ||
82 | + `{filename: "€ rates.txt"}` | ||
83 | + | ||
84 | +## Examples | ||
85 | + | ||
86 | +### Send a file for download | ||
87 | + | ||
88 | +```js | ||
89 | +var contentDisposition = require('content-disposition') | ||
90 | +var destroy = require('destroy') | ||
91 | +var http = require('http') | ||
92 | +var onFinished = require('on-finished') | ||
93 | + | ||
94 | +var filePath = '/path/to/public/plans.pdf' | ||
95 | + | ||
96 | +http.createServer(function onRequest(req, res) { | ||
97 | + // set headers | ||
98 | + res.setHeader('Content-Type', 'application/pdf') | ||
99 | + res.setHeader('Content-Disposition', contentDisposition(filePath)) | ||
100 | + | ||
101 | + // send file | ||
102 | + var stream = fs.createReadStream(filePath) | ||
103 | + stream.pipe(res) | ||
104 | + onFinished(res, function (err) { | ||
105 | + destroy(stream) | ||
106 | + }) | ||
107 | +}) | ||
108 | +``` | ||
109 | + | ||
110 | +## Testing | ||
111 | + | ||
112 | +```sh | ||
113 | +$ npm test | ||
114 | +``` | ||
115 | + | ||
116 | +## References | ||
117 | + | ||
118 | +- [RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1][rfc-2616] | ||
119 | +- [RFC 5987: Character Set and Language Encoding for Hypertext Transfer Protocol (HTTP) Header Field Parameters][rfc-5987] | ||
120 | +- [RFC 6266: Use of the Content-Disposition Header Field in the Hypertext Transfer Protocol (HTTP)][rfc-6266] | ||
121 | +- [Test Cases for HTTP Content-Disposition header field (RFC 6266) and the Encodings defined in RFCs 2047, 2231 and 5987][tc-2231] | ||
122 | + | ||
123 | +[rfc-2616]: https://tools.ietf.org/html/rfc2616 | ||
124 | +[rfc-5987]: https://tools.ietf.org/html/rfc5987 | ||
125 | +[rfc-6266]: https://tools.ietf.org/html/rfc6266 | ||
126 | +[tc-2231]: http://greenbytes.de/tech/tc2231/ | ||
127 | + | ||
128 | +## License | ||
129 | + | ||
130 | +[MIT](LICENSE) | ||
131 | + | ||
132 | +[npm-image]: https://img.shields.io/npm/v/content-disposition.svg?style=flat | ||
133 | +[npm-url]: https://npmjs.org/package/content-disposition | ||
134 | +[node-version-image]: https://img.shields.io/node/v/content-disposition.svg?style=flat | ||
135 | +[node-version-url]: https://nodejs.org/en/download | ||
136 | +[travis-image]: https://img.shields.io/travis/jshttp/content-disposition.svg?style=flat | ||
137 | +[travis-url]: https://travis-ci.org/jshttp/content-disposition | ||
138 | +[coveralls-image]: https://img.shields.io/coveralls/jshttp/content-disposition.svg?style=flat | ||
139 | +[coveralls-url]: https://coveralls.io/r/jshttp/content-disposition?branch=master | ||
140 | +[downloads-image]: https://img.shields.io/npm/dm/content-disposition.svg?style=flat | ||
141 | +[downloads-url]: https://npmjs.org/package/content-disposition |
node_modules/content-disposition/index.js
0 → 100644
This diff is collapsed. Click to expand it.
1 | +{ | ||
2 | + "_from": "content-disposition@0.5.2", | ||
3 | + "_id": "content-disposition@0.5.2", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=", | ||
6 | + "_location": "/content-disposition", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "version", | ||
10 | + "registry": true, | ||
11 | + "raw": "content-disposition@0.5.2", | ||
12 | + "name": "content-disposition", | ||
13 | + "escapedName": "content-disposition", | ||
14 | + "rawSpec": "0.5.2", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "0.5.2" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/express" | ||
20 | + ], | ||
21 | + "_resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", | ||
22 | + "_shasum": "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4", | ||
23 | + "_spec": "content-disposition@0.5.2", | ||
24 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project\\node_modules\\express", | ||
25 | + "bugs": { | ||
26 | + "url": "https://github.com/jshttp/content-disposition/issues" | ||
27 | + }, | ||
28 | + "bundleDependencies": false, | ||
29 | + "contributors": [ | ||
30 | + { | ||
31 | + "name": "Douglas Christopher Wilson", | ||
32 | + "email": "doug@somethingdoug.com" | ||
33 | + } | ||
34 | + ], | ||
35 | + "deprecated": false, | ||
36 | + "description": "Create and parse Content-Disposition header", | ||
37 | + "devDependencies": { | ||
38 | + "eslint": "3.11.1", | ||
39 | + "eslint-config-standard": "6.2.1", | ||
40 | + "eslint-plugin-promise": "3.3.0", | ||
41 | + "eslint-plugin-standard": "2.0.1", | ||
42 | + "istanbul": "0.4.5", | ||
43 | + "mocha": "1.21.5" | ||
44 | + }, | ||
45 | + "engines": { | ||
46 | + "node": ">= 0.6" | ||
47 | + }, | ||
48 | + "files": [ | ||
49 | + "LICENSE", | ||
50 | + "HISTORY.md", | ||
51 | + "README.md", | ||
52 | + "index.js" | ||
53 | + ], | ||
54 | + "homepage": "https://github.com/jshttp/content-disposition#readme", | ||
55 | + "keywords": [ | ||
56 | + "content-disposition", | ||
57 | + "http", | ||
58 | + "rfc6266", | ||
59 | + "res" | ||
60 | + ], | ||
61 | + "license": "MIT", | ||
62 | + "name": "content-disposition", | ||
63 | + "repository": { | ||
64 | + "type": "git", | ||
65 | + "url": "git+https://github.com/jshttp/content-disposition.git" | ||
66 | + }, | ||
67 | + "scripts": { | ||
68 | + "lint": "eslint .", | ||
69 | + "test": "mocha --reporter spec --bail --check-leaks test/", | ||
70 | + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/", | ||
71 | + "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/" | ||
72 | + }, | ||
73 | + "version": "0.5.2" | ||
74 | +} |
node_modules/content-type/HISTORY.md
0 → 100644
1 | +1.0.4 / 2017-09-11 | ||
2 | +================== | ||
3 | + | ||
4 | + * perf: skip parameter parsing when no parameters | ||
5 | + | ||
6 | +1.0.3 / 2017-09-10 | ||
7 | +================== | ||
8 | + | ||
9 | + * perf: remove argument reassignment | ||
10 | + | ||
11 | +1.0.2 / 2016-05-09 | ||
12 | +================== | ||
13 | + | ||
14 | + * perf: enable strict mode | ||
15 | + | ||
16 | +1.0.1 / 2015-02-13 | ||
17 | +================== | ||
18 | + | ||
19 | + * Improve missing `Content-Type` header error message | ||
20 | + | ||
21 | +1.0.0 / 2015-02-01 | ||
22 | +================== | ||
23 | + | ||
24 | + * Initial implementation, derived from `media-typer@0.3.0` |
node_modules/content-type/LICENSE
0 → 100644
1 | +(The MIT License) | ||
2 | + | ||
3 | +Copyright (c) 2015 Douglas Christopher Wilson | ||
4 | + | ||
5 | +Permission is hereby granted, free of charge, to any person obtaining | ||
6 | +a copy of this software and associated documentation files (the | ||
7 | +'Software'), to deal in the Software without restriction, including | ||
8 | +without limitation the rights to use, copy, modify, merge, publish, | ||
9 | +distribute, sublicense, and/or sell copies of the Software, and to | ||
10 | +permit persons to whom the Software is furnished to do so, subject to | ||
11 | +the following conditions: | ||
12 | + | ||
13 | +The above copyright notice and this permission notice shall be | ||
14 | +included in all copies or substantial portions of the Software. | ||
15 | + | ||
16 | +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, | ||
17 | +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
18 | +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
19 | +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
20 | +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
21 | +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
22 | +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
node_modules/content-type/README.md
0 → 100644
1 | +# content-type | ||
2 | + | ||
3 | +[![NPM Version][npm-image]][npm-url] | ||
4 | +[![NPM Downloads][downloads-image]][downloads-url] | ||
5 | +[![Node.js Version][node-version-image]][node-version-url] | ||
6 | +[![Build Status][travis-image]][travis-url] | ||
7 | +[![Test Coverage][coveralls-image]][coveralls-url] | ||
8 | + | ||
9 | +Create and parse HTTP Content-Type header according to RFC 7231 | ||
10 | + | ||
11 | +## Installation | ||
12 | + | ||
13 | +```sh | ||
14 | +$ npm install content-type | ||
15 | +``` | ||
16 | + | ||
17 | +## API | ||
18 | + | ||
19 | +```js | ||
20 | +var contentType = require('content-type') | ||
21 | +``` | ||
22 | + | ||
23 | +### contentType.parse(string) | ||
24 | + | ||
25 | +```js | ||
26 | +var obj = contentType.parse('image/svg+xml; charset=utf-8') | ||
27 | +``` | ||
28 | + | ||
29 | +Parse a content type string. This will return an object with the following | ||
30 | +properties (examples are shown for the string `'image/svg+xml; charset=utf-8'`): | ||
31 | + | ||
32 | + - `type`: The media type (the type and subtype, always lower case). | ||
33 | + Example: `'image/svg+xml'` | ||
34 | + | ||
35 | + - `parameters`: An object of the parameters in the media type (name of parameter | ||
36 | + always lower case). Example: `{charset: 'utf-8'}` | ||
37 | + | ||
38 | +Throws a `TypeError` if the string is missing or invalid. | ||
39 | + | ||
40 | +### contentType.parse(req) | ||
41 | + | ||
42 | +```js | ||
43 | +var obj = contentType.parse(req) | ||
44 | +``` | ||
45 | + | ||
46 | +Parse the `content-type` header from the given `req`. Short-cut for | ||
47 | +`contentType.parse(req.headers['content-type'])`. | ||
48 | + | ||
49 | +Throws a `TypeError` if the `Content-Type` header is missing or invalid. | ||
50 | + | ||
51 | +### contentType.parse(res) | ||
52 | + | ||
53 | +```js | ||
54 | +var obj = contentType.parse(res) | ||
55 | +``` | ||
56 | + | ||
57 | +Parse the `content-type` header set on the given `res`. Short-cut for | ||
58 | +`contentType.parse(res.getHeader('content-type'))`. | ||
59 | + | ||
60 | +Throws a `TypeError` if the `Content-Type` header is missing or invalid. | ||
61 | + | ||
62 | +### contentType.format(obj) | ||
63 | + | ||
64 | +```js | ||
65 | +var str = contentType.format({type: 'image/svg+xml'}) | ||
66 | +``` | ||
67 | + | ||
68 | +Format an object into a content type string. This will return a string of the | ||
69 | +content type for the given object with the following properties (examples are | ||
70 | +shown that produce the string `'image/svg+xml; charset=utf-8'`): | ||
71 | + | ||
72 | + - `type`: The media type (will be lower-cased). Example: `'image/svg+xml'` | ||
73 | + | ||
74 | + - `parameters`: An object of the parameters in the media type (name of the | ||
75 | + parameter will be lower-cased). Example: `{charset: 'utf-8'}` | ||
76 | + | ||
77 | +Throws a `TypeError` if the object contains an invalid type or parameter names. | ||
78 | + | ||
79 | +## License | ||
80 | + | ||
81 | +[MIT](LICENSE) | ||
82 | + | ||
83 | +[npm-image]: https://img.shields.io/npm/v/content-type.svg | ||
84 | +[npm-url]: https://npmjs.org/package/content-type | ||
85 | +[node-version-image]: https://img.shields.io/node/v/content-type.svg | ||
86 | +[node-version-url]: http://nodejs.org/download/ | ||
87 | +[travis-image]: https://img.shields.io/travis/jshttp/content-type/master.svg | ||
88 | +[travis-url]: https://travis-ci.org/jshttp/content-type | ||
89 | +[coveralls-image]: https://img.shields.io/coveralls/jshttp/content-type/master.svg | ||
90 | +[coveralls-url]: https://coveralls.io/r/jshttp/content-type | ||
91 | +[downloads-image]: https://img.shields.io/npm/dm/content-type.svg | ||
92 | +[downloads-url]: https://npmjs.org/package/content-type |
node_modules/content-type/index.js
0 → 100644
1 | +/*! | ||
2 | + * content-type | ||
3 | + * Copyright(c) 2015 Douglas Christopher Wilson | ||
4 | + * MIT Licensed | ||
5 | + */ | ||
6 | + | ||
7 | +'use strict' | ||
8 | + | ||
9 | +/** | ||
10 | + * RegExp to match *( ";" parameter ) in RFC 7231 sec 3.1.1.1 | ||
11 | + * | ||
12 | + * parameter = token "=" ( token / quoted-string ) | ||
13 | + * token = 1*tchar | ||
14 | + * tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" | ||
15 | + * / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~" | ||
16 | + * / DIGIT / ALPHA | ||
17 | + * ; any VCHAR, except delimiters | ||
18 | + * quoted-string = DQUOTE *( qdtext / quoted-pair ) DQUOTE | ||
19 | + * qdtext = HTAB / SP / %x21 / %x23-5B / %x5D-7E / obs-text | ||
20 | + * obs-text = %x80-FF | ||
21 | + * quoted-pair = "\" ( HTAB / SP / VCHAR / obs-text ) | ||
22 | + */ | ||
23 | +var PARAM_REGEXP = /; *([!#$%&'*+.^_`|~0-9A-Za-z-]+) *= *("(?:[\u000b\u0020\u0021\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u000b\u0020-\u00ff])*"|[!#$%&'*+.^_`|~0-9A-Za-z-]+) */g | ||
24 | +var TEXT_REGEXP = /^[\u000b\u0020-\u007e\u0080-\u00ff]+$/ | ||
25 | +var TOKEN_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+$/ | ||
26 | + | ||
27 | +/** | ||
28 | + * RegExp to match quoted-pair in RFC 7230 sec 3.2.6 | ||
29 | + * | ||
30 | + * quoted-pair = "\" ( HTAB / SP / VCHAR / obs-text ) | ||
31 | + * obs-text = %x80-FF | ||
32 | + */ | ||
33 | +var QESC_REGEXP = /\\([\u000b\u0020-\u00ff])/g | ||
34 | + | ||
35 | +/** | ||
36 | + * RegExp to match chars that must be quoted-pair in RFC 7230 sec 3.2.6 | ||
37 | + */ | ||
38 | +var QUOTE_REGEXP = /([\\"])/g | ||
39 | + | ||
40 | +/** | ||
41 | + * RegExp to match type in RFC 7231 sec 3.1.1.1 | ||
42 | + * | ||
43 | + * media-type = type "/" subtype | ||
44 | + * type = token | ||
45 | + * subtype = token | ||
46 | + */ | ||
47 | +var TYPE_REGEXP = /^[!#$%&'*+.^_`|~0-9A-Za-z-]+\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/ | ||
48 | + | ||
49 | +/** | ||
50 | + * Module exports. | ||
51 | + * @public | ||
52 | + */ | ||
53 | + | ||
54 | +exports.format = format | ||
55 | +exports.parse = parse | ||
56 | + | ||
57 | +/** | ||
58 | + * Format object to media type. | ||
59 | + * | ||
60 | + * @param {object} obj | ||
61 | + * @return {string} | ||
62 | + * @public | ||
63 | + */ | ||
64 | + | ||
65 | +function format (obj) { | ||
66 | + if (!obj || typeof obj !== 'object') { | ||
67 | + throw new TypeError('argument obj is required') | ||
68 | + } | ||
69 | + | ||
70 | + var parameters = obj.parameters | ||
71 | + var type = obj.type | ||
72 | + | ||
73 | + if (!type || !TYPE_REGEXP.test(type)) { | ||
74 | + throw new TypeError('invalid type') | ||
75 | + } | ||
76 | + | ||
77 | + var string = type | ||
78 | + | ||
79 | + // append parameters | ||
80 | + if (parameters && typeof parameters === 'object') { | ||
81 | + var param | ||
82 | + var params = Object.keys(parameters).sort() | ||
83 | + | ||
84 | + for (var i = 0; i < params.length; i++) { | ||
85 | + param = params[i] | ||
86 | + | ||
87 | + if (!TOKEN_REGEXP.test(param)) { | ||
88 | + throw new TypeError('invalid parameter name') | ||
89 | + } | ||
90 | + | ||
91 | + string += '; ' + param + '=' + qstring(parameters[param]) | ||
92 | + } | ||
93 | + } | ||
94 | + | ||
95 | + return string | ||
96 | +} | ||
97 | + | ||
98 | +/** | ||
99 | + * Parse media type to object. | ||
100 | + * | ||
101 | + * @param {string|object} string | ||
102 | + * @return {Object} | ||
103 | + * @public | ||
104 | + */ | ||
105 | + | ||
106 | +function parse (string) { | ||
107 | + if (!string) { | ||
108 | + throw new TypeError('argument string is required') | ||
109 | + } | ||
110 | + | ||
111 | + // support req/res-like objects as argument | ||
112 | + var header = typeof string === 'object' | ||
113 | + ? getcontenttype(string) | ||
114 | + : string | ||
115 | + | ||
116 | + if (typeof header !== 'string') { | ||
117 | + throw new TypeError('argument string is required to be a string') | ||
118 | + } | ||
119 | + | ||
120 | + var index = header.indexOf(';') | ||
121 | + var type = index !== -1 | ||
122 | + ? header.substr(0, index).trim() | ||
123 | + : header.trim() | ||
124 | + | ||
125 | + if (!TYPE_REGEXP.test(type)) { | ||
126 | + throw new TypeError('invalid media type') | ||
127 | + } | ||
128 | + | ||
129 | + var obj = new ContentType(type.toLowerCase()) | ||
130 | + | ||
131 | + // parse parameters | ||
132 | + if (index !== -1) { | ||
133 | + var key | ||
134 | + var match | ||
135 | + var value | ||
136 | + | ||
137 | + PARAM_REGEXP.lastIndex = index | ||
138 | + | ||
139 | + while ((match = PARAM_REGEXP.exec(header))) { | ||
140 | + if (match.index !== index) { | ||
141 | + throw new TypeError('invalid parameter format') | ||
142 | + } | ||
143 | + | ||
144 | + index += match[0].length | ||
145 | + key = match[1].toLowerCase() | ||
146 | + value = match[2] | ||
147 | + | ||
148 | + if (value[0] === '"') { | ||
149 | + // remove quotes and escapes | ||
150 | + value = value | ||
151 | + .substr(1, value.length - 2) | ||
152 | + .replace(QESC_REGEXP, '$1') | ||
153 | + } | ||
154 | + | ||
155 | + obj.parameters[key] = value | ||
156 | + } | ||
157 | + | ||
158 | + if (index !== header.length) { | ||
159 | + throw new TypeError('invalid parameter format') | ||
160 | + } | ||
161 | + } | ||
162 | + | ||
163 | + return obj | ||
164 | +} | ||
165 | + | ||
166 | +/** | ||
167 | + * Get content-type from req/res objects. | ||
168 | + * | ||
169 | + * @param {object} | ||
170 | + * @return {Object} | ||
171 | + * @private | ||
172 | + */ | ||
173 | + | ||
174 | +function getcontenttype (obj) { | ||
175 | + var header | ||
176 | + | ||
177 | + if (typeof obj.getHeader === 'function') { | ||
178 | + // res-like | ||
179 | + header = obj.getHeader('content-type') | ||
180 | + } else if (typeof obj.headers === 'object') { | ||
181 | + // req-like | ||
182 | + header = obj.headers && obj.headers['content-type'] | ||
183 | + } | ||
184 | + | ||
185 | + if (typeof header !== 'string') { | ||
186 | + throw new TypeError('content-type header is missing from object') | ||
187 | + } | ||
188 | + | ||
189 | + return header | ||
190 | +} | ||
191 | + | ||
192 | +/** | ||
193 | + * Quote a string if necessary. | ||
194 | + * | ||
195 | + * @param {string} val | ||
196 | + * @return {string} | ||
197 | + * @private | ||
198 | + */ | ||
199 | + | ||
200 | +function qstring (val) { | ||
201 | + var str = String(val) | ||
202 | + | ||
203 | + // no need to quote tokens | ||
204 | + if (TOKEN_REGEXP.test(str)) { | ||
205 | + return str | ||
206 | + } | ||
207 | + | ||
208 | + if (str.length > 0 && !TEXT_REGEXP.test(str)) { | ||
209 | + throw new TypeError('invalid parameter value') | ||
210 | + } | ||
211 | + | ||
212 | + return '"' + str.replace(QUOTE_REGEXP, '\\$1') + '"' | ||
213 | +} | ||
214 | + | ||
215 | +/** | ||
216 | + * Class to represent a content type. | ||
217 | + * @private | ||
218 | + */ | ||
219 | +function ContentType (type) { | ||
220 | + this.parameters = Object.create(null) | ||
221 | + this.type = type | ||
222 | +} |
node_modules/content-type/package.json
0 → 100644
1 | +{ | ||
2 | + "_from": "content-type@~1.0.4", | ||
3 | + "_id": "content-type@1.0.4", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", | ||
6 | + "_location": "/content-type", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "range", | ||
10 | + "registry": true, | ||
11 | + "raw": "content-type@~1.0.4", | ||
12 | + "name": "content-type", | ||
13 | + "escapedName": "content-type", | ||
14 | + "rawSpec": "~1.0.4", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "~1.0.4" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/body-parser", | ||
20 | + "/express" | ||
21 | + ], | ||
22 | + "_resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", | ||
23 | + "_shasum": "e138cc75e040c727b1966fe5e5f8c9aee256fe3b", | ||
24 | + "_spec": "content-type@~1.0.4", | ||
25 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project\\node_modules\\express", | ||
26 | + "author": { | ||
27 | + "name": "Douglas Christopher Wilson", | ||
28 | + "email": "doug@somethingdoug.com" | ||
29 | + }, | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/jshttp/content-type/issues" | ||
32 | + }, | ||
33 | + "bundleDependencies": false, | ||
34 | + "deprecated": false, | ||
35 | + "description": "Create and parse HTTP Content-Type header", | ||
36 | + "devDependencies": { | ||
37 | + "eslint": "3.19.0", | ||
38 | + "eslint-config-standard": "10.2.1", | ||
39 | + "eslint-plugin-import": "2.7.0", | ||
40 | + "eslint-plugin-node": "5.1.1", | ||
41 | + "eslint-plugin-promise": "3.5.0", | ||
42 | + "eslint-plugin-standard": "3.0.1", | ||
43 | + "istanbul": "0.4.5", | ||
44 | + "mocha": "~1.21.5" | ||
45 | + }, | ||
46 | + "engines": { | ||
47 | + "node": ">= 0.6" | ||
48 | + }, | ||
49 | + "files": [ | ||
50 | + "LICENSE", | ||
51 | + "HISTORY.md", | ||
52 | + "README.md", | ||
53 | + "index.js" | ||
54 | + ], | ||
55 | + "homepage": "https://github.com/jshttp/content-type#readme", | ||
56 | + "keywords": [ | ||
57 | + "content-type", | ||
58 | + "http", | ||
59 | + "req", | ||
60 | + "res", | ||
61 | + "rfc7231" | ||
62 | + ], | ||
63 | + "license": "MIT", | ||
64 | + "name": "content-type", | ||
65 | + "repository": { | ||
66 | + "type": "git", | ||
67 | + "url": "git+https://github.com/jshttp/content-type.git" | ||
68 | + }, | ||
69 | + "scripts": { | ||
70 | + "lint": "eslint .", | ||
71 | + "test": "mocha --reporter spec --check-leaks --bail test/", | ||
72 | + "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", | ||
73 | + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" | ||
74 | + }, | ||
75 | + "version": "1.0.4" | ||
76 | +} |
node_modules/cookie-signature/.npmignore
0 → 100644
node_modules/cookie-signature/History.md
0 → 100644
1 | +1.0.6 / 2015-02-03 | ||
2 | +================== | ||
3 | + | ||
4 | +* use `npm test` instead of `make test` to run tests | ||
5 | +* clearer assertion messages when checking input | ||
6 | + | ||
7 | + | ||
8 | +1.0.5 / 2014-09-05 | ||
9 | +================== | ||
10 | + | ||
11 | +* add license to package.json | ||
12 | + | ||
13 | +1.0.4 / 2014-06-25 | ||
14 | +================== | ||
15 | + | ||
16 | + * corrected avoidance of timing attacks (thanks @tenbits!) | ||
17 | + | ||
18 | +1.0.3 / 2014-01-28 | ||
19 | +================== | ||
20 | + | ||
21 | + * [incorrect] fix for timing attacks | ||
22 | + | ||
23 | +1.0.2 / 2014-01-28 | ||
24 | +================== | ||
25 | + | ||
26 | + * fix missing repository warning | ||
27 | + * fix typo in test | ||
28 | + | ||
29 | +1.0.1 / 2013-04-15 | ||
30 | +================== | ||
31 | + | ||
32 | + * Revert "Changed underlying HMAC algo. to sha512." | ||
33 | + * Revert "Fix for timing attacks on MAC verification." | ||
34 | + | ||
35 | +0.0.1 / 2010-01-03 | ||
36 | +================== | ||
37 | + | ||
38 | + * Initial release |
node_modules/cookie-signature/Readme.md
0 → 100644
1 | + | ||
2 | +# cookie-signature | ||
3 | + | ||
4 | + Sign and unsign cookies. | ||
5 | + | ||
6 | +## Example | ||
7 | + | ||
8 | +```js | ||
9 | +var cookie = require('cookie-signature'); | ||
10 | + | ||
11 | +var val = cookie.sign('hello', 'tobiiscool'); | ||
12 | +val.should.equal('hello.DGDUkGlIkCzPz+C0B064FNgHdEjox7ch8tOBGslZ5QI'); | ||
13 | + | ||
14 | +var val = cookie.sign('hello', 'tobiiscool'); | ||
15 | +cookie.unsign(val, 'tobiiscool').should.equal('hello'); | ||
16 | +cookie.unsign(val, 'luna').should.be.false; | ||
17 | +``` | ||
18 | + | ||
19 | +## License | ||
20 | + | ||
21 | +(The MIT License) | ||
22 | + | ||
23 | +Copyright (c) 2012 LearnBoost <tj@learnboost.com> | ||
24 | + | ||
25 | +Permission is hereby granted, free of charge, to any person obtaining | ||
26 | +a copy of this software and associated documentation files (the | ||
27 | +'Software'), to deal in the Software without restriction, including | ||
28 | +without limitation the rights to use, copy, modify, merge, publish, | ||
29 | +distribute, sublicense, and/or sell copies of the Software, and to | ||
30 | +permit persons to whom the Software is furnished to do so, subject to | ||
31 | +the following conditions: | ||
32 | + | ||
33 | +The above copyright notice and this permission notice shall be | ||
34 | +included in all copies or substantial portions of the Software. | ||
35 | + | ||
36 | +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, | ||
37 | +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
38 | +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
39 | +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
40 | +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
41 | +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
42 | +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
node_modules/cookie-signature/index.js
0 → 100644
1 | +/** | ||
2 | + * Module dependencies. | ||
3 | + */ | ||
4 | + | ||
5 | +var crypto = require('crypto'); | ||
6 | + | ||
7 | +/** | ||
8 | + * Sign the given `val` with `secret`. | ||
9 | + * | ||
10 | + * @param {String} val | ||
11 | + * @param {String} secret | ||
12 | + * @return {String} | ||
13 | + * @api private | ||
14 | + */ | ||
15 | + | ||
16 | +exports.sign = function(val, secret){ | ||
17 | + if ('string' != typeof val) throw new TypeError("Cookie value must be provided as a string."); | ||
18 | + if ('string' != typeof secret) throw new TypeError("Secret string must be provided."); | ||
19 | + return val + '.' + crypto | ||
20 | + .createHmac('sha256', secret) | ||
21 | + .update(val) | ||
22 | + .digest('base64') | ||
23 | + .replace(/\=+$/, ''); | ||
24 | +}; | ||
25 | + | ||
26 | +/** | ||
27 | + * Unsign and decode the given `val` with `secret`, | ||
28 | + * returning `false` if the signature is invalid. | ||
29 | + * | ||
30 | + * @param {String} val | ||
31 | + * @param {String} secret | ||
32 | + * @return {String|Boolean} | ||
33 | + * @api private | ||
34 | + */ | ||
35 | + | ||
36 | +exports.unsign = function(val, secret){ | ||
37 | + if ('string' != typeof val) throw new TypeError("Signed cookie string must be provided."); | ||
38 | + if ('string' != typeof secret) throw new TypeError("Secret string must be provided."); | ||
39 | + var str = val.slice(0, val.lastIndexOf('.')) | ||
40 | + , mac = exports.sign(str, secret); | ||
41 | + | ||
42 | + return sha1(mac) == sha1(val) ? str : false; | ||
43 | +}; | ||
44 | + | ||
45 | +/** | ||
46 | + * Private | ||
47 | + */ | ||
48 | + | ||
49 | +function sha1(str){ | ||
50 | + return crypto.createHash('sha1').update(str).digest('hex'); | ||
51 | +} |
node_modules/cookie-signature/package.json
0 → 100644
1 | +{ | ||
2 | + "_from": "cookie-signature@1.0.6", | ||
3 | + "_id": "cookie-signature@1.0.6", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", | ||
6 | + "_location": "/cookie-signature", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "version", | ||
10 | + "registry": true, | ||
11 | + "raw": "cookie-signature@1.0.6", | ||
12 | + "name": "cookie-signature", | ||
13 | + "escapedName": "cookie-signature", | ||
14 | + "rawSpec": "1.0.6", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "1.0.6" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/express" | ||
20 | + ], | ||
21 | + "_resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", | ||
22 | + "_shasum": "e303a882b342cc3ee8ca513a79999734dab3ae2c", | ||
23 | + "_spec": "cookie-signature@1.0.6", | ||
24 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project\\node_modules\\express", | ||
25 | + "author": { | ||
26 | + "name": "TJ Holowaychuk", | ||
27 | + "email": "tj@learnboost.com" | ||
28 | + }, | ||
29 | + "bugs": { | ||
30 | + "url": "https://github.com/visionmedia/node-cookie-signature/issues" | ||
31 | + }, | ||
32 | + "bundleDependencies": false, | ||
33 | + "dependencies": {}, | ||
34 | + "deprecated": false, | ||
35 | + "description": "Sign and unsign cookies", | ||
36 | + "devDependencies": { | ||
37 | + "mocha": "*", | ||
38 | + "should": "*" | ||
39 | + }, | ||
40 | + "homepage": "https://github.com/visionmedia/node-cookie-signature#readme", | ||
41 | + "keywords": [ | ||
42 | + "cookie", | ||
43 | + "sign", | ||
44 | + "unsign" | ||
45 | + ], | ||
46 | + "license": "MIT", | ||
47 | + "main": "index", | ||
48 | + "name": "cookie-signature", | ||
49 | + "repository": { | ||
50 | + "type": "git", | ||
51 | + "url": "git+https://github.com/visionmedia/node-cookie-signature.git" | ||
52 | + }, | ||
53 | + "scripts": { | ||
54 | + "test": "mocha --require should --reporter spec" | ||
55 | + }, | ||
56 | + "version": "1.0.6" | ||
57 | +} |
node_modules/cookie/HISTORY.md
0 → 100644
1 | +0.3.1 / 2016-05-26 | ||
2 | +================== | ||
3 | + | ||
4 | + * Fix `sameSite: true` to work with draft-7 clients | ||
5 | + - `true` now sends `SameSite=Strict` instead of `SameSite` | ||
6 | + | ||
7 | +0.3.0 / 2016-05-26 | ||
8 | +================== | ||
9 | + | ||
10 | + * Add `sameSite` option | ||
11 | + - Replaces `firstPartyOnly` option, never implemented by browsers | ||
12 | + * Improve error message when `encode` is not a function | ||
13 | + * Improve error message when `expires` is not a `Date` | ||
14 | + | ||
15 | +0.2.4 / 2016-05-20 | ||
16 | +================== | ||
17 | + | ||
18 | + * perf: enable strict mode | ||
19 | + * perf: use for loop in parse | ||
20 | + * perf: use string concatination for serialization | ||
21 | + | ||
22 | +0.2.3 / 2015-10-25 | ||
23 | +================== | ||
24 | + | ||
25 | + * Fix cookie `Max-Age` to never be a floating point number | ||
26 | + | ||
27 | +0.2.2 / 2015-09-17 | ||
28 | +================== | ||
29 | + | ||
30 | + * Fix regression when setting empty cookie value | ||
31 | + - Ease the new restriction, which is just basic header-level validation | ||
32 | + * Fix typo in invalid value errors | ||
33 | + | ||
34 | +0.2.1 / 2015-09-17 | ||
35 | +================== | ||
36 | + | ||
37 | + * Throw on invalid values provided to `serialize` | ||
38 | + - Ensures the resulting string is a valid HTTP header value | ||
39 | + | ||
40 | +0.2.0 / 2015-08-13 | ||
41 | +================== | ||
42 | + | ||
43 | + * Add `firstPartyOnly` option | ||
44 | + * Throw better error for invalid argument to parse | ||
45 | + * perf: hoist regular expression | ||
46 | + | ||
47 | +0.1.5 / 2015-09-17 | ||
48 | +================== | ||
49 | + | ||
50 | + * Fix regression when setting empty cookie value | ||
51 | + - Ease the new restriction, which is just basic header-level validation | ||
52 | + * Fix typo in invalid value errors | ||
53 | + | ||
54 | +0.1.4 / 2015-09-17 | ||
55 | +================== | ||
56 | + | ||
57 | + * Throw better error for invalid argument to parse | ||
58 | + * Throw on invalid values provided to `serialize` | ||
59 | + - Ensures the resulting string is a valid HTTP header value | ||
60 | + | ||
61 | +0.1.3 / 2015-05-19 | ||
62 | +================== | ||
63 | + | ||
64 | + * Reduce the scope of try-catch deopt | ||
65 | + * Remove argument reassignments | ||
66 | + | ||
67 | +0.1.2 / 2014-04-16 | ||
68 | +================== | ||
69 | + | ||
70 | + * Remove unnecessary files from npm package | ||
71 | + | ||
72 | +0.1.1 / 2014-02-23 | ||
73 | +================== | ||
74 | + | ||
75 | + * Fix bad parse when cookie value contained a comma | ||
76 | + * Fix support for `maxAge` of `0` | ||
77 | + | ||
78 | +0.1.0 / 2013-05-01 | ||
79 | +================== | ||
80 | + | ||
81 | + * Add `decode` option | ||
82 | + * Add `encode` option | ||
83 | + | ||
84 | +0.0.6 / 2013-04-08 | ||
85 | +================== | ||
86 | + | ||
87 | + * Ignore cookie parts missing `=` | ||
88 | + | ||
89 | +0.0.5 / 2012-10-29 | ||
90 | +================== | ||
91 | + | ||
92 | + * Return raw cookie value if value unescape errors | ||
93 | + | ||
94 | +0.0.4 / 2012-06-21 | ||
95 | +================== | ||
96 | + | ||
97 | + * Use encode/decodeURIComponent for cookie encoding/decoding | ||
98 | + - Improve server/client interoperability | ||
99 | + | ||
100 | +0.0.3 / 2012-06-06 | ||
101 | +================== | ||
102 | + | ||
103 | + * Only escape special characters per the cookie RFC | ||
104 | + | ||
105 | +0.0.2 / 2012-06-01 | ||
106 | +================== | ||
107 | + | ||
108 | + * Fix `maxAge` option to not throw error | ||
109 | + | ||
110 | +0.0.1 / 2012-05-28 | ||
111 | +================== | ||
112 | + | ||
113 | + * Add more tests | ||
114 | + | ||
115 | +0.0.0 / 2012-05-28 | ||
116 | +================== | ||
117 | + | ||
118 | + * Initial release |
node_modules/cookie/LICENSE
0 → 100644
1 | +(The MIT License) | ||
2 | + | ||
3 | +Copyright (c) 2012-2014 Roman Shtylman <shtylman@gmail.com> | ||
4 | +Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com> | ||
5 | + | ||
6 | +Permission is hereby granted, free of charge, to any person obtaining | ||
7 | +a copy of this software and associated documentation files (the | ||
8 | +'Software'), to deal in the Software without restriction, including | ||
9 | +without limitation the rights to use, copy, modify, merge, publish, | ||
10 | +distribute, sublicense, and/or sell copies of the Software, and to | ||
11 | +permit persons to whom the Software is furnished to do so, subject to | ||
12 | +the following conditions: | ||
13 | + | ||
14 | +The above copyright notice and this permission notice shall be | ||
15 | +included in all copies or substantial portions of the Software. | ||
16 | + | ||
17 | +THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, | ||
18 | +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
19 | +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
20 | +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY | ||
21 | +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, | ||
22 | +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE | ||
23 | +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
24 | + |
node_modules/cookie/README.md
0 → 100644
1 | +# cookie | ||
2 | + | ||
3 | +[![NPM Version][npm-image]][npm-url] | ||
4 | +[![NPM Downloads][downloads-image]][downloads-url] | ||
5 | +[![Node.js Version][node-version-image]][node-version-url] | ||
6 | +[![Build Status][travis-image]][travis-url] | ||
7 | +[![Test Coverage][coveralls-image]][coveralls-url] | ||
8 | + | ||
9 | +Basic HTTP cookie parser and serializer for HTTP servers. | ||
10 | + | ||
11 | +## Installation | ||
12 | + | ||
13 | +```sh | ||
14 | +$ npm install cookie | ||
15 | +``` | ||
16 | + | ||
17 | +## API | ||
18 | + | ||
19 | +```js | ||
20 | +var cookie = require('cookie'); | ||
21 | +``` | ||
22 | + | ||
23 | +### cookie.parse(str, options) | ||
24 | + | ||
25 | +Parse an HTTP `Cookie` header string and returning an object of all cookie name-value pairs. | ||
26 | +The `str` argument is the string representing a `Cookie` header value and `options` is an | ||
27 | +optional object containing additional parsing options. | ||
28 | + | ||
29 | +```js | ||
30 | +var cookies = cookie.parse('foo=bar; equation=E%3Dmc%5E2'); | ||
31 | +// { foo: 'bar', equation: 'E=mc^2' } | ||
32 | +``` | ||
33 | + | ||
34 | +#### Options | ||
35 | + | ||
36 | +`cookie.parse` accepts these properties in the options object. | ||
37 | + | ||
38 | +##### decode | ||
39 | + | ||
40 | +Specifies a function that will be used to decode a cookie's value. Since the value of a cookie | ||
41 | +has a limited character set (and must be a simple string), this function can be used to decode | ||
42 | +a previously-encoded cookie value into a JavaScript string or other object. | ||
43 | + | ||
44 | +The default function is the global `decodeURIComponent`, which will decode any URL-encoded | ||
45 | +sequences into their byte representations. | ||
46 | + | ||
47 | +**note** if an error is thrown from this function, the original, non-decoded cookie value will | ||
48 | +be returned as the cookie's value. | ||
49 | + | ||
50 | +### cookie.serialize(name, value, options) | ||
51 | + | ||
52 | +Serialize a cookie name-value pair into a `Set-Cookie` header string. The `name` argument is the | ||
53 | +name for the cookie, the `value` argument is the value to set the cookie to, and the `options` | ||
54 | +argument is an optional object containing additional serialization options. | ||
55 | + | ||
56 | +```js | ||
57 | +var setCookie = cookie.serialize('foo', 'bar'); | ||
58 | +// foo=bar | ||
59 | +``` | ||
60 | + | ||
61 | +#### Options | ||
62 | + | ||
63 | +`cookie.serialize` accepts these properties in the options object. | ||
64 | + | ||
65 | +##### domain | ||
66 | + | ||
67 | +Specifies the value for the [`Domain` `Set-Cookie` attribute][rfc-6266-5.2.3]. By default, no | ||
68 | +domain is set, and most clients will consider the cookie to apply to only the current domain. | ||
69 | + | ||
70 | +##### encode | ||
71 | + | ||
72 | +Specifies a function that will be used to encode a cookie's value. Since value of a cookie | ||
73 | +has a limited character set (and must be a simple string), this function can be used to encode | ||
74 | +a value into a string suited for a cookie's value. | ||
75 | + | ||
76 | +The default function is the global `ecodeURIComponent`, which will encode a JavaScript string | ||
77 | +into UTF-8 byte sequences and then URL-encode any that fall outside of the cookie range. | ||
78 | + | ||
79 | +##### expires | ||
80 | + | ||
81 | +Specifies the `Date` object to be the value for the [`Expires` `Set-Cookie` attribute][rfc-6266-5.2.1]. | ||
82 | +By default, no expiration is set, and most clients will consider this a "non-persistent cookie" and | ||
83 | +will delete it on a condition like exiting a web browser application. | ||
84 | + | ||
85 | +**note** the [cookie storage model specification][rfc-6266-5.3] states that if both `expires` and | ||
86 | +`magAge` are set, then `maxAge` takes precedence, but it is possiblke not all clients by obey this, | ||
87 | +so if both are set, they should point to the same date and time. | ||
88 | + | ||
89 | +##### httpOnly | ||
90 | + | ||
91 | +Specifies the `boolean` value for the [`HttpOnly` `Set-Cookie` attribute][rfc-6266-5.2.6]. When truthy, | ||
92 | +the `HttpOnly` attribute is set, otherwise it is not. By default, the `HttpOnly` attribute is not set. | ||
93 | + | ||
94 | +**note** be careful when setting this to `true`, as compliant clients will not allow client-side | ||
95 | +JavaScript to see the cookie in `document.cookie`. | ||
96 | + | ||
97 | +##### maxAge | ||
98 | + | ||
99 | +Specifies the `number` (in seconds) to be the value for the [`Max-Age` `Set-Cookie` attribute][rfc-6266-5.2.2]. | ||
100 | +The given number will be converted to an integer by rounding down. By default, no maximum age is set. | ||
101 | + | ||
102 | +**note** the [cookie storage model specification][rfc-6266-5.3] states that if both `expires` and | ||
103 | +`magAge` are set, then `maxAge` takes precedence, but it is possiblke not all clients by obey this, | ||
104 | +so if both are set, they should point to the same date and time. | ||
105 | + | ||
106 | +##### path | ||
107 | + | ||
108 | +Specifies the value for the [`Path` `Set-Cookie` attribute][rfc-6266-5.2.4]. By default, the path | ||
109 | +is considered the ["default path"][rfc-6266-5.1.4]. By default, no maximum age is set, and most | ||
110 | +clients will consider this a "non-persistent cookie" and will delete it on a condition like exiting | ||
111 | +a web browser application. | ||
112 | + | ||
113 | +##### sameSite | ||
114 | + | ||
115 | +Specifies the `boolean` or `string` to be the value for the [`SameSite` `Set-Cookie` attribute][draft-west-first-party-cookies-07]. | ||
116 | + | ||
117 | + - `true` will set the `SameSite` attribute to `Strict` for strict same site enforcement. | ||
118 | + - `false` will not set the `SameSite` attribute. | ||
119 | + - `'lax'` will set the `SameSite` attribute to `Lax` for lax same site enforcement. | ||
120 | + - `'strict'` will set the `SameSite` attribute to `Strict` for strict same site enforcement. | ||
121 | + | ||
122 | +More information about the different enforcement levels can be found in the specification | ||
123 | +https://tools.ietf.org/html/draft-west-first-party-cookies-07#section-4.1.1 | ||
124 | + | ||
125 | +**note** This is an attribute that has not yet been fully standardized, and may change in the future. | ||
126 | +This also means many clients may ignore this attribute until they understand it. | ||
127 | + | ||
128 | +##### secure | ||
129 | + | ||
130 | +Specifies the `boolean` value for the [`Secure` `Set-Cookie` attribute][rfc-6266-5.2.5]. When truthy, | ||
131 | +the `Secure` attribute is set, otherwise it is not. By default, the `Secure` attribute is not set. | ||
132 | + | ||
133 | +**note** be careful when setting this to `true`, as compliant clients will not send the cookie back to | ||
134 | +the server in the future if the browser does not have an HTTPS connection. | ||
135 | + | ||
136 | +## Example | ||
137 | + | ||
138 | +The following example uses this module in conjunction with the Node.js core HTTP server | ||
139 | +to prompt a user for their name and display it back on future visits. | ||
140 | + | ||
141 | +```js | ||
142 | +var cookie = require('cookie'); | ||
143 | +var escapeHtml = require('escape-html'); | ||
144 | +var http = require('http'); | ||
145 | +var url = require('url'); | ||
146 | + | ||
147 | +function onRequest(req, res) { | ||
148 | + // Parse the query string | ||
149 | + var query = url.parse(req.url, true, true).query; | ||
150 | + | ||
151 | + if (query && query.name) { | ||
152 | + // Set a new cookie with the name | ||
153 | + res.setHeader('Set-Cookie', cookie.serialize('name', String(query.name), { | ||
154 | + httpOnly: true, | ||
155 | + maxAge: 60 * 60 * 24 * 7 // 1 week | ||
156 | + })); | ||
157 | + | ||
158 | + // Redirect back after setting cookie | ||
159 | + res.statusCode = 302; | ||
160 | + res.setHeader('Location', req.headers.referer || '/'); | ||
161 | + res.end(); | ||
162 | + return; | ||
163 | + } | ||
164 | + | ||
165 | + // Parse the cookies on the request | ||
166 | + var cookies = cookie.parse(req.headers.cookie || ''); | ||
167 | + | ||
168 | + // Get the visitor name set in the cookie | ||
169 | + var name = cookies.name; | ||
170 | + | ||
171 | + res.setHeader('Content-Type', 'text/html; charset=UTF-8'); | ||
172 | + | ||
173 | + if (name) { | ||
174 | + res.write('<p>Welcome back, <b>' + escapeHtml(name) + '</b>!</p>'); | ||
175 | + } else { | ||
176 | + res.write('<p>Hello, new visitor!</p>'); | ||
177 | + } | ||
178 | + | ||
179 | + res.write('<form method="GET">'); | ||
180 | + res.write('<input placeholder="enter your name" name="name"> <input type="submit" value="Set Name">'); | ||
181 | + res.end('</form'); | ||
182 | +} | ||
183 | + | ||
184 | +http.createServer(onRequest).listen(3000); | ||
185 | +``` | ||
186 | + | ||
187 | +## Testing | ||
188 | + | ||
189 | +```sh | ||
190 | +$ npm test | ||
191 | +``` | ||
192 | + | ||
193 | +## References | ||
194 | + | ||
195 | +- [RFC 6266: HTTP State Management Mechanism][rfc-6266] | ||
196 | +- [Same-site Cookies][draft-west-first-party-cookies-07] | ||
197 | + | ||
198 | +[draft-west-first-party-cookies-07]: https://tools.ietf.org/html/draft-west-first-party-cookies-07 | ||
199 | +[rfc-6266]: https://tools.ietf.org/html/rfc6266 | ||
200 | +[rfc-6266-5.1.4]: https://tools.ietf.org/html/rfc6266#section-5.1.4 | ||
201 | +[rfc-6266-5.2.1]: https://tools.ietf.org/html/rfc6266#section-5.2.1 | ||
202 | +[rfc-6266-5.2.2]: https://tools.ietf.org/html/rfc6266#section-5.2.2 | ||
203 | +[rfc-6266-5.2.3]: https://tools.ietf.org/html/rfc6266#section-5.2.3 | ||
204 | +[rfc-6266-5.2.4]: https://tools.ietf.org/html/rfc6266#section-5.2.4 | ||
205 | +[rfc-6266-5.3]: https://tools.ietf.org/html/rfc6266#section-5.3 | ||
206 | + | ||
207 | +## License | ||
208 | + | ||
209 | +[MIT](LICENSE) | ||
210 | + | ||
211 | +[npm-image]: https://img.shields.io/npm/v/cookie.svg | ||
212 | +[npm-url]: https://npmjs.org/package/cookie | ||
213 | +[node-version-image]: https://img.shields.io/node/v/cookie.svg | ||
214 | +[node-version-url]: https://nodejs.org/en/download | ||
215 | +[travis-image]: https://img.shields.io/travis/jshttp/cookie/master.svg | ||
216 | +[travis-url]: https://travis-ci.org/jshttp/cookie | ||
217 | +[coveralls-image]: https://img.shields.io/coveralls/jshttp/cookie/master.svg | ||
218 | +[coveralls-url]: https://coveralls.io/r/jshttp/cookie?branch=master | ||
219 | +[downloads-image]: https://img.shields.io/npm/dm/cookie.svg | ||
220 | +[downloads-url]: https://npmjs.org/package/cookie |
node_modules/cookie/index.js
0 → 100644
1 | +/*! | ||
2 | + * cookie | ||
3 | + * Copyright(c) 2012-2014 Roman Shtylman | ||
4 | + * Copyright(c) 2015 Douglas Christopher Wilson | ||
5 | + * MIT Licensed | ||
6 | + */ | ||
7 | + | ||
8 | +'use strict'; | ||
9 | + | ||
10 | +/** | ||
11 | + * Module exports. | ||
12 | + * @public | ||
13 | + */ | ||
14 | + | ||
15 | +exports.parse = parse; | ||
16 | +exports.serialize = serialize; | ||
17 | + | ||
18 | +/** | ||
19 | + * Module variables. | ||
20 | + * @private | ||
21 | + */ | ||
22 | + | ||
23 | +var decode = decodeURIComponent; | ||
24 | +var encode = encodeURIComponent; | ||
25 | +var pairSplitRegExp = /; */; | ||
26 | + | ||
27 | +/** | ||
28 | + * RegExp to match field-content in RFC 7230 sec 3.2 | ||
29 | + * | ||
30 | + * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ] | ||
31 | + * field-vchar = VCHAR / obs-text | ||
32 | + * obs-text = %x80-FF | ||
33 | + */ | ||
34 | + | ||
35 | +var fieldContentRegExp = /^[\u0009\u0020-\u007e\u0080-\u00ff]+$/; | ||
36 | + | ||
37 | +/** | ||
38 | + * Parse a cookie header. | ||
39 | + * | ||
40 | + * Parse the given cookie header string into an object | ||
41 | + * The object has the various cookies as keys(names) => values | ||
42 | + * | ||
43 | + * @param {string} str | ||
44 | + * @param {object} [options] | ||
45 | + * @return {object} | ||
46 | + * @public | ||
47 | + */ | ||
48 | + | ||
49 | +function parse(str, options) { | ||
50 | + if (typeof str !== 'string') { | ||
51 | + throw new TypeError('argument str must be a string'); | ||
52 | + } | ||
53 | + | ||
54 | + var obj = {} | ||
55 | + var opt = options || {}; | ||
56 | + var pairs = str.split(pairSplitRegExp); | ||
57 | + var dec = opt.decode || decode; | ||
58 | + | ||
59 | + for (var i = 0; i < pairs.length; i++) { | ||
60 | + var pair = pairs[i]; | ||
61 | + var eq_idx = pair.indexOf('='); | ||
62 | + | ||
63 | + // skip things that don't look like key=value | ||
64 | + if (eq_idx < 0) { | ||
65 | + continue; | ||
66 | + } | ||
67 | + | ||
68 | + var key = pair.substr(0, eq_idx).trim() | ||
69 | + var val = pair.substr(++eq_idx, pair.length).trim(); | ||
70 | + | ||
71 | + // quoted values | ||
72 | + if ('"' == val[0]) { | ||
73 | + val = val.slice(1, -1); | ||
74 | + } | ||
75 | + | ||
76 | + // only assign once | ||
77 | + if (undefined == obj[key]) { | ||
78 | + obj[key] = tryDecode(val, dec); | ||
79 | + } | ||
80 | + } | ||
81 | + | ||
82 | + return obj; | ||
83 | +} | ||
84 | + | ||
85 | +/** | ||
86 | + * Serialize data into a cookie header. | ||
87 | + * | ||
88 | + * Serialize the a name value pair into a cookie string suitable for | ||
89 | + * http headers. An optional options object specified cookie parameters. | ||
90 | + * | ||
91 | + * serialize('foo', 'bar', { httpOnly: true }) | ||
92 | + * => "foo=bar; httpOnly" | ||
93 | + * | ||
94 | + * @param {string} name | ||
95 | + * @param {string} val | ||
96 | + * @param {object} [options] | ||
97 | + * @return {string} | ||
98 | + * @public | ||
99 | + */ | ||
100 | + | ||
101 | +function serialize(name, val, options) { | ||
102 | + var opt = options || {}; | ||
103 | + var enc = opt.encode || encode; | ||
104 | + | ||
105 | + if (typeof enc !== 'function') { | ||
106 | + throw new TypeError('option encode is invalid'); | ||
107 | + } | ||
108 | + | ||
109 | + if (!fieldContentRegExp.test(name)) { | ||
110 | + throw new TypeError('argument name is invalid'); | ||
111 | + } | ||
112 | + | ||
113 | + var value = enc(val); | ||
114 | + | ||
115 | + if (value && !fieldContentRegExp.test(value)) { | ||
116 | + throw new TypeError('argument val is invalid'); | ||
117 | + } | ||
118 | + | ||
119 | + var str = name + '=' + value; | ||
120 | + | ||
121 | + if (null != opt.maxAge) { | ||
122 | + var maxAge = opt.maxAge - 0; | ||
123 | + if (isNaN(maxAge)) throw new Error('maxAge should be a Number'); | ||
124 | + str += '; Max-Age=' + Math.floor(maxAge); | ||
125 | + } | ||
126 | + | ||
127 | + if (opt.domain) { | ||
128 | + if (!fieldContentRegExp.test(opt.domain)) { | ||
129 | + throw new TypeError('option domain is invalid'); | ||
130 | + } | ||
131 | + | ||
132 | + str += '; Domain=' + opt.domain; | ||
133 | + } | ||
134 | + | ||
135 | + if (opt.path) { | ||
136 | + if (!fieldContentRegExp.test(opt.path)) { | ||
137 | + throw new TypeError('option path is invalid'); | ||
138 | + } | ||
139 | + | ||
140 | + str += '; Path=' + opt.path; | ||
141 | + } | ||
142 | + | ||
143 | + if (opt.expires) { | ||
144 | + if (typeof opt.expires.toUTCString !== 'function') { | ||
145 | + throw new TypeError('option expires is invalid'); | ||
146 | + } | ||
147 | + | ||
148 | + str += '; Expires=' + opt.expires.toUTCString(); | ||
149 | + } | ||
150 | + | ||
151 | + if (opt.httpOnly) { | ||
152 | + str += '; HttpOnly'; | ||
153 | + } | ||
154 | + | ||
155 | + if (opt.secure) { | ||
156 | + str += '; Secure'; | ||
157 | + } | ||
158 | + | ||
159 | + if (opt.sameSite) { | ||
160 | + var sameSite = typeof opt.sameSite === 'string' | ||
161 | + ? opt.sameSite.toLowerCase() : opt.sameSite; | ||
162 | + | ||
163 | + switch (sameSite) { | ||
164 | + case true: | ||
165 | + str += '; SameSite=Strict'; | ||
166 | + break; | ||
167 | + case 'lax': | ||
168 | + str += '; SameSite=Lax'; | ||
169 | + break; | ||
170 | + case 'strict': | ||
171 | + str += '; SameSite=Strict'; | ||
172 | + break; | ||
173 | + default: | ||
174 | + throw new TypeError('option sameSite is invalid'); | ||
175 | + } | ||
176 | + } | ||
177 | + | ||
178 | + return str; | ||
179 | +} | ||
180 | + | ||
181 | +/** | ||
182 | + * Try decoding a string using a decoding function. | ||
183 | + * | ||
184 | + * @param {string} str | ||
185 | + * @param {function} decode | ||
186 | + * @private | ||
187 | + */ | ||
188 | + | ||
189 | +function tryDecode(str, decode) { | ||
190 | + try { | ||
191 | + return decode(str); | ||
192 | + } catch (e) { | ||
193 | + return str; | ||
194 | + } | ||
195 | +} |
node_modules/cookie/package.json
0 → 100644
1 | +{ | ||
2 | + "_from": "cookie@0.3.1", | ||
3 | + "_id": "cookie@0.3.1", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", | ||
6 | + "_location": "/cookie", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "version", | ||
10 | + "registry": true, | ||
11 | + "raw": "cookie@0.3.1", | ||
12 | + "name": "cookie", | ||
13 | + "escapedName": "cookie", | ||
14 | + "rawSpec": "0.3.1", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "0.3.1" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/express" | ||
20 | + ], | ||
21 | + "_resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", | ||
22 | + "_shasum": "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb", | ||
23 | + "_spec": "cookie@0.3.1", | ||
24 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project\\node_modules\\express", | ||
25 | + "author": { | ||
26 | + "name": "Roman Shtylman", | ||
27 | + "email": "shtylman@gmail.com" | ||
28 | + }, | ||
29 | + "bugs": { | ||
30 | + "url": "https://github.com/jshttp/cookie/issues" | ||
31 | + }, | ||
32 | + "bundleDependencies": false, | ||
33 | + "contributors": [ | ||
34 | + { | ||
35 | + "name": "Douglas Christopher Wilson", | ||
36 | + "email": "doug@somethingdoug.com" | ||
37 | + } | ||
38 | + ], | ||
39 | + "deprecated": false, | ||
40 | + "description": "HTTP server cookie parsing and serialization", | ||
41 | + "devDependencies": { | ||
42 | + "istanbul": "0.4.3", | ||
43 | + "mocha": "1.21.5" | ||
44 | + }, | ||
45 | + "engines": { | ||
46 | + "node": ">= 0.6" | ||
47 | + }, | ||
48 | + "files": [ | ||
49 | + "HISTORY.md", | ||
50 | + "LICENSE", | ||
51 | + "README.md", | ||
52 | + "index.js" | ||
53 | + ], | ||
54 | + "homepage": "https://github.com/jshttp/cookie#readme", | ||
55 | + "keywords": [ | ||
56 | + "cookie", | ||
57 | + "cookies" | ||
58 | + ], | ||
59 | + "license": "MIT", | ||
60 | + "name": "cookie", | ||
61 | + "repository": { | ||
62 | + "type": "git", | ||
63 | + "url": "git+https://github.com/jshttp/cookie.git" | ||
64 | + }, | ||
65 | + "scripts": { | ||
66 | + "test": "mocha --reporter spec --bail --check-leaks test/", | ||
67 | + "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/", | ||
68 | + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/" | ||
69 | + }, | ||
70 | + "version": "0.3.1" | ||
71 | +} |
node_modules/core-util-is/LICENSE
0 → 100644
1 | +Copyright Node.js contributors. All rights reserved. | ||
2 | + | ||
3 | +Permission is hereby granted, free of charge, to any person obtaining a copy | ||
4 | +of this software and associated documentation files (the "Software"), to | ||
5 | +deal in the Software without restriction, including without limitation the | ||
6 | +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
7 | +sell copies of the Software, and to permit persons to whom the Software is | ||
8 | +furnished to do so, subject to the following conditions: | ||
9 | + | ||
10 | +The above copyright notice and this permission notice shall be included in | ||
11 | +all copies or substantial portions of the Software. | ||
12 | + | ||
13 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
14 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
15 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
16 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
17 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
18 | +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
19 | +IN THE SOFTWARE. |
node_modules/core-util-is/README.md
0 → 100644
node_modules/core-util-is/float.patch
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/core-util-is/lib/util.js
0 → 100644
1 | +// Copyright Joyent, Inc. and other Node contributors. | ||
2 | +// | ||
3 | +// Permission is hereby granted, free of charge, to any person obtaining a | ||
4 | +// copy of this software and associated documentation files (the | ||
5 | +// "Software"), to deal in the Software without restriction, including | ||
6 | +// without limitation the rights to use, copy, modify, merge, publish, | ||
7 | +// distribute, sublicense, and/or sell copies of the Software, and to permit | ||
8 | +// persons to whom the Software is furnished to do so, subject to the | ||
9 | +// following conditions: | ||
10 | +// | ||
11 | +// The above copyright notice and this permission notice shall be included | ||
12 | +// in all copies or substantial portions of the Software. | ||
13 | +// | ||
14 | +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
15 | +// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
16 | +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN | ||
17 | +// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | ||
18 | +// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | ||
19 | +// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE | ||
20 | +// USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
21 | + | ||
22 | +// NOTE: These type checking functions intentionally don't use `instanceof` | ||
23 | +// because it is fragile and can be easily faked with `Object.create()`. | ||
24 | + | ||
25 | +function isArray(arg) { | ||
26 | + if (Array.isArray) { | ||
27 | + return Array.isArray(arg); | ||
28 | + } | ||
29 | + return objectToString(arg) === '[object Array]'; | ||
30 | +} | ||
31 | +exports.isArray = isArray; | ||
32 | + | ||
33 | +function isBoolean(arg) { | ||
34 | + return typeof arg === 'boolean'; | ||
35 | +} | ||
36 | +exports.isBoolean = isBoolean; | ||
37 | + | ||
38 | +function isNull(arg) { | ||
39 | + return arg === null; | ||
40 | +} | ||
41 | +exports.isNull = isNull; | ||
42 | + | ||
43 | +function isNullOrUndefined(arg) { | ||
44 | + return arg == null; | ||
45 | +} | ||
46 | +exports.isNullOrUndefined = isNullOrUndefined; | ||
47 | + | ||
48 | +function isNumber(arg) { | ||
49 | + return typeof arg === 'number'; | ||
50 | +} | ||
51 | +exports.isNumber = isNumber; | ||
52 | + | ||
53 | +function isString(arg) { | ||
54 | + return typeof arg === 'string'; | ||
55 | +} | ||
56 | +exports.isString = isString; | ||
57 | + | ||
58 | +function isSymbol(arg) { | ||
59 | + return typeof arg === 'symbol'; | ||
60 | +} | ||
61 | +exports.isSymbol = isSymbol; | ||
62 | + | ||
63 | +function isUndefined(arg) { | ||
64 | + return arg === void 0; | ||
65 | +} | ||
66 | +exports.isUndefined = isUndefined; | ||
67 | + | ||
68 | +function isRegExp(re) { | ||
69 | + return objectToString(re) === '[object RegExp]'; | ||
70 | +} | ||
71 | +exports.isRegExp = isRegExp; | ||
72 | + | ||
73 | +function isObject(arg) { | ||
74 | + return typeof arg === 'object' && arg !== null; | ||
75 | +} | ||
76 | +exports.isObject = isObject; | ||
77 | + | ||
78 | +function isDate(d) { | ||
79 | + return objectToString(d) === '[object Date]'; | ||
80 | +} | ||
81 | +exports.isDate = isDate; | ||
82 | + | ||
83 | +function isError(e) { | ||
84 | + return (objectToString(e) === '[object Error]' || e instanceof Error); | ||
85 | +} | ||
86 | +exports.isError = isError; | ||
87 | + | ||
88 | +function isFunction(arg) { | ||
89 | + return typeof arg === 'function'; | ||
90 | +} | ||
91 | +exports.isFunction = isFunction; | ||
92 | + | ||
93 | +function isPrimitive(arg) { | ||
94 | + return arg === null || | ||
95 | + typeof arg === 'boolean' || | ||
96 | + typeof arg === 'number' || | ||
97 | + typeof arg === 'string' || | ||
98 | + typeof arg === 'symbol' || // ES6 symbol | ||
99 | + typeof arg === 'undefined'; | ||
100 | +} | ||
101 | +exports.isPrimitive = isPrimitive; | ||
102 | + | ||
103 | +exports.isBuffer = Buffer.isBuffer; | ||
104 | + | ||
105 | +function objectToString(o) { | ||
106 | + return Object.prototype.toString.call(o); | ||
107 | +} |
node_modules/core-util-is/package.json
0 → 100644
1 | +{ | ||
2 | + "_from": "core-util-is@~1.0.0", | ||
3 | + "_id": "core-util-is@1.0.2", | ||
4 | + "_inBundle": false, | ||
5 | + "_integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", | ||
6 | + "_location": "/core-util-is", | ||
7 | + "_phantomChildren": {}, | ||
8 | + "_requested": { | ||
9 | + "type": "range", | ||
10 | + "registry": true, | ||
11 | + "raw": "core-util-is@~1.0.0", | ||
12 | + "name": "core-util-is", | ||
13 | + "escapedName": "core-util-is", | ||
14 | + "rawSpec": "~1.0.0", | ||
15 | + "saveSpec": null, | ||
16 | + "fetchSpec": "~1.0.0" | ||
17 | + }, | ||
18 | + "_requiredBy": [ | ||
19 | + "/readable-stream" | ||
20 | + ], | ||
21 | + "_resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", | ||
22 | + "_shasum": "b5fd54220aa2bc5ab57aab7140c940754503c1a7", | ||
23 | + "_spec": "core-util-is@~1.0.0", | ||
24 | + "_where": "C:\\Users\\Administrator\\Desktop\\OSS_2015110474Project\\node_modules\\readable-stream", | ||
25 | + "author": { | ||
26 | + "name": "Isaac Z. Schlueter", | ||
27 | + "email": "i@izs.me", | ||
28 | + "url": "http://blog.izs.me/" | ||
29 | + }, | ||
30 | + "bugs": { | ||
31 | + "url": "https://github.com/isaacs/core-util-is/issues" | ||
32 | + }, | ||
33 | + "bundleDependencies": false, | ||
34 | + "deprecated": false, | ||
35 | + "description": "The `util.is*` functions introduced in Node v0.12.", | ||
36 | + "devDependencies": { | ||
37 | + "tap": "^2.3.0" | ||
38 | + }, | ||
39 | + "homepage": "https://github.com/isaacs/core-util-is#readme", | ||
40 | + "keywords": [ | ||
41 | + "util", | ||
42 | + "isBuffer", | ||
43 | + "isArray", | ||
44 | + "isNumber", | ||
45 | + "isString", | ||
46 | + "isRegExp", | ||
47 | + "isThis", | ||
48 | + "isThat", | ||
49 | + "polyfill" | ||
50 | + ], | ||
51 | + "license": "MIT", | ||
52 | + "main": "lib/util.js", | ||
53 | + "name": "core-util-is", | ||
54 | + "repository": { | ||
55 | + "type": "git", | ||
56 | + "url": "git://github.com/isaacs/core-util-is.git" | ||
57 | + }, | ||
58 | + "scripts": { | ||
59 | + "test": "tap test.js" | ||
60 | + }, | ||
61 | + "version": "1.0.2" | ||
62 | +} |
node_modules/core-util-is/test.js
0 → 100644
1 | +var assert = require('tap'); | ||
2 | + | ||
3 | +var t = require('./lib/util'); | ||
4 | + | ||
5 | +assert.equal(t.isArray([]), true); | ||
6 | +assert.equal(t.isArray({}), false); | ||
7 | + | ||
8 | +assert.equal(t.isBoolean(null), false); | ||
9 | +assert.equal(t.isBoolean(true), true); | ||
10 | +assert.equal(t.isBoolean(false), true); | ||
11 | + | ||
12 | +assert.equal(t.isNull(null), true); | ||
13 | +assert.equal(t.isNull(undefined), false); | ||
14 | +assert.equal(t.isNull(false), false); | ||
15 | +assert.equal(t.isNull(), false); | ||
16 | + | ||
17 | +assert.equal(t.isNullOrUndefined(null), true); | ||
18 | +assert.equal(t.isNullOrUndefined(undefined), true); | ||
19 | +assert.equal(t.isNullOrUndefined(false), false); | ||
20 | +assert.equal(t.isNullOrUndefined(), true); | ||
21 | + | ||
22 | +assert.equal(t.isNumber(null), false); | ||
23 | +assert.equal(t.isNumber('1'), false); | ||
24 | +assert.equal(t.isNumber(1), true); | ||
25 | + | ||
26 | +assert.equal(t.isString(null), false); | ||
27 | +assert.equal(t.isString('1'), true); | ||
28 | +assert.equal(t.isString(1), false); | ||
29 | + | ||
30 | +assert.equal(t.isSymbol(null), false); | ||
31 | +assert.equal(t.isSymbol('1'), false); | ||
32 | +assert.equal(t.isSymbol(1), false); | ||
33 | +assert.equal(t.isSymbol(Symbol()), true); | ||
34 | + | ||
35 | +assert.equal(t.isUndefined(null), false); | ||
36 | +assert.equal(t.isUndefined(undefined), true); | ||
37 | +assert.equal(t.isUndefined(false), false); | ||
38 | +assert.equal(t.isUndefined(), true); | ||
39 | + | ||
40 | +assert.equal(t.isRegExp(null), false); | ||
41 | +assert.equal(t.isRegExp('1'), false); | ||
42 | +assert.equal(t.isRegExp(new RegExp()), true); | ||
43 | + | ||
44 | +assert.equal(t.isObject({}), true); | ||
45 | +assert.equal(t.isObject([]), true); | ||
46 | +assert.equal(t.isObject(new RegExp()), true); | ||
47 | +assert.equal(t.isObject(new Date()), true); | ||
48 | + | ||
49 | +assert.equal(t.isDate(null), false); | ||
50 | +assert.equal(t.isDate('1'), false); | ||
51 | +assert.equal(t.isDate(new Date()), true); | ||
52 | + | ||
53 | +assert.equal(t.isError(null), false); | ||
54 | +assert.equal(t.isError({ err: true }), false); | ||
55 | +assert.equal(t.isError(new Error()), true); | ||
56 | + | ||
57 | +assert.equal(t.isFunction(null), false); | ||
58 | +assert.equal(t.isFunction({ }), false); | ||
59 | +assert.equal(t.isFunction(function() {}), true); | ||
60 | + | ||
61 | +assert.equal(t.isPrimitive(null), true); | ||
62 | +assert.equal(t.isPrimitive(''), true); | ||
63 | +assert.equal(t.isPrimitive(0), true); | ||
64 | +assert.equal(t.isPrimitive(new Date()), false); | ||
65 | + | ||
66 | +assert.equal(t.isBuffer(null), false); | ||
67 | +assert.equal(t.isBuffer({}), false); | ||
68 | +assert.equal(t.isBuffer(new Buffer(0)), true); |
node_modules/crc/LICENSE
0 → 100644
1 | +The MIT License (MIT) | ||
2 | + | ||
3 | +Copyright 2014 Alex Gorbatchev | ||
4 | + | ||
5 | +Permission is hereby granted, free of charge, to any person obtaining | ||
6 | +a copy of this software and associated documentation files (the | ||
7 | +"Software"), to deal in the Software without restriction, including | ||
8 | +without limitation the rights to use, copy, modify, merge, publish, | ||
9 | +distribute, sublicense, and/or sell copies of the Software, and to | ||
10 | +permit persons to whom the Software is furnished to do so, subject to | ||
11 | +the following conditions: | ||
12 | + | ||
13 | +The above copyright notice and this permission notice shall be | ||
14 | +included in all copies or substantial portions of the Software. | ||
15 | + | ||
16 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
17 | +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
18 | +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
19 | +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
20 | +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
21 | +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
22 | +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
node_modules/crc/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/crc1.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/crc16.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/crc16_ccitt.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/crc16_kermit.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/crc16_modbus.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/crc16_xmodem.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/crc24.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/crc32.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/crc8.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/crc8_1wire.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/create_buffer.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/define_crc.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/lib/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/crc/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/.coveralls.yml
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/.eslintrc
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/.npmignore
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/.travis.yml
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/CHANGELOG.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/Makefile
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/component.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/karma.conf.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/node.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/src/browser.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/src/debug.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/src/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/src/inspector-log.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/debug/src/node.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/depd/History.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/depd/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/depd/Readme.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/depd/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/depd/lib/browser/index.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/depd/lib/compat/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/depd/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/destroy/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/destroy/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/destroy/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/destroy/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ee-first/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ee-first/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ee-first/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ee-first/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ejs/Jakefile
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ejs/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ejs/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ejs/ejs.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ejs/ejs.min.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ejs/lib/ejs.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ejs/lib/utils.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ejs/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/encodeurl/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/encodeurl/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/encodeurl/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/encodeurl/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/encodeurl/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/escape-html/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/escape-html/Readme.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/escape-html/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/escape-html/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/etag/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/etag/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/etag/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/etag/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/etag/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express-session/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express-session/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express-session/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express-session/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express-session/package.json
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/express/History.md
0 → 100644
This diff could not be displayed because it is too large.
node_modules/express/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/Readme.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/application.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/express.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/middleware/init.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/middleware/query.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/request.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/response.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/router/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/router/layer.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/router/route.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/utils.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/lib/view.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/express/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/finalhandler/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/finalhandler/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/finalhandler/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/finalhandler/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/finalhandler/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/forwarded/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/forwarded/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/forwarded/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/forwarded/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/forwarded/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/fresh/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/fresh/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/fresh/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/fresh/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/fresh/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/http-errors/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/http-errors/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/http-errors/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/http-errors/index.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/http-errors/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/.npmignore
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/.travis.yml
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/Changelog.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/README.md
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/encodings/index.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/encodings/utf16.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/encodings/utf7.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/lib/bom-handling.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/lib/extend-node.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/lib/index.d.ts
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/lib/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/lib/streams.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/iconv-lite/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/inherits/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/inherits/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/inherits/inherits.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/inherits/inherits_browser.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/inherits/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ipaddr.js/.npmignore
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ipaddr.js/.travis.yml
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ipaddr.js/Cakefile
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ipaddr.js/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ipaddr.js/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ipaddr.js/bower.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ipaddr.js/ipaddr.min.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ipaddr.js/lib/ipaddr.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ipaddr.js/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ipaddr.js/src/ipaddr.coffee
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/isarray/.npmignore
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/isarray/.travis.yml
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/isarray/Makefile
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/isarray/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/isarray/component.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/isarray/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/isarray/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/isarray/test.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/media-typer/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/media-typer/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/media-typer/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/media-typer/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/media-typer/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/merge-descriptors/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/merge-descriptors/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/merge-descriptors/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/merge-descriptors/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/merge-descriptors/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/methods/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/methods/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/methods/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/methods/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/methods/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime-db/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime-db/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime-db/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime-db/db.json
0 → 100644
This diff could not be displayed because it is too large.
node_modules/mime-db/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime-db/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime-types/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime-types/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime-types/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime-types/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime-types/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime/build/build.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime/build/test.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime/cli.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime/mime.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mime/types.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ms/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ms/license.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ms/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/ms/readme.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/Changes.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/License
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/Readme.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/Connection.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/ConnectionConfig.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/Pool.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/PoolCluster.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/PoolConfig.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/PoolConnection.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/PoolNamespace.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/PoolSelector.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/protocol/Auth.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/protocol/Parser.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/protocol/Protocol.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/protocol/ResultSet.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/mysql/lib/protocol/SqlString.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/mysql/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/negotiator/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/negotiator/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/negotiator/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/negotiator/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/negotiator/lib/charset.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/negotiator/lib/encoding.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/negotiator/lib/language.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/negotiator/lib/mediaType.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/negotiator/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/on-finished/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/on-finished/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/on-finished/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/on-finished/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/on-finished/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/on-headers/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/on-headers/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/on-headers/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/on-headers/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/on-headers/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/parseurl/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/parseurl/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/parseurl/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/parseurl/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/parseurl/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-local/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-local/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-local/lib/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-local/lib/strategy.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-local/lib/utils.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-local/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-strategy/.jshintrc
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-strategy/.travis.yml
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-strategy/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-strategy/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport-strategy/lib/index.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/passport-strategy/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport/.npmignore
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport/lib/authenticator.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/passport/lib/http/request.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/passport/lib/index.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/passport/lib/sessionmanager.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/passport/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/path-to-regexp/History.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/path-to-regexp/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/path-to-regexp/Readme.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/path-to-regexp/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/path-to-regexp/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/pause/.npmignore
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/pause/History.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/pause/Makefile
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/pause/Readme.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/pause/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/pause/package.json
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/process-nextick-args/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/process-nextick-args/license.md
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/process-nextick-args/readme.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/process-nextick-args/test.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/proxy-addr/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/proxy-addr/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/proxy-addr/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/proxy-addr/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/proxy-addr/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/.editorconfig
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/.eslintignore
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/.eslintrc
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/CHANGELOG.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/dist/qs.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/lib/formats.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/lib/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/lib/parse.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/lib/stringify.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/lib/utils.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/test/.eslintrc
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/test/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/test/parse.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/test/stringify.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/qs/test/utils.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/random-bytes/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/random-bytes/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/random-bytes/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/random-bytes/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/random-bytes/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/range-parser/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/range-parser/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/range-parser/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/range-parser/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/range-parser/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/raw-body/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/raw-body/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/raw-body/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/raw-body/index.d.ts
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/raw-body/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/raw-body/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/readable-stream/.npmignore
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/readable-stream/.travis.yml
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/readable-stream/CONTRIBUTING.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/readable-stream/GOVERNANCE.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/readable-stream/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/readable-stream/README.md
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/readable-stream/duplex.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/readable-stream/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/readable-stream/passthrough.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/readable-stream/readable.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/readable-stream/transform.js
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/readable-stream/writable.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/safe-buffer/.travis.yml
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/safe-buffer/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/safe-buffer/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/safe-buffer/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/safe-buffer/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/safe-buffer/test.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/send/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/send/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/send/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/send/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/send/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/serve-static/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/serve-static/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/serve-static/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/serve-static/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/serve-static/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/setprototypeof/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/setprototypeof/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/setprototypeof/index.d.ts
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/setprototypeof/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/setprototypeof/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/sqlstring/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/sqlstring/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/sqlstring/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/sqlstring/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/sqlstring/lib/SqlString.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/sqlstring/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/statuses/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/statuses/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/statuses/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/statuses/codes.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/statuses/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/statuses/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/string_decoder/.npmignore
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/string_decoder/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/string_decoder/README.md
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
node_modules/string_decoder/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/type-is/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/type-is/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/type-is/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/type-is/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/type-is/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/uid-safe/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/uid-safe/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/uid-safe/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/uid-safe/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/uid-safe/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/unpipe/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/unpipe/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/unpipe/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/unpipe/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/unpipe/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/util-deprecate/History.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/util-deprecate/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/util-deprecate/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/util-deprecate/browser.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/util-deprecate/node.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/util-deprecate/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/utils-merge/.npmignore
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/utils-merge/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/utils-merge/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/utils-merge/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/utils-merge/package.json
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/vary/HISTORY.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/vary/LICENSE
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/vary/README.md
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/vary/index.js
0 → 100644
This diff is collapsed. Click to expand it.
node_modules/vary/package.json
0 → 100644
This diff is collapsed. Click to expand it.
package-lock.json
0 → 100644
This diff is collapsed. Click to expand it.
package.json
0 → 100644
This diff is collapsed. Click to expand it.
public/cctv.png
0 → 100644
9.5 KB
public/css/ui.css
0 → 100644
This diff is collapsed. Click to expand it.
public/form.html
0 → 100644
This diff is collapsed. Click to expand it.
public/join.html
0 → 100644
This diff is collapsed. Click to expand it.
public/main.html
0 → 100644
This diff is collapsed. Click to expand it.
router/GPS/index.js
0 → 100644
This diff is collapsed. Click to expand it.
router/customer/index.js
0 → 100644
This diff is collapsed. Click to expand it.
router/email/email.js
0 → 100644
This diff is collapsed. Click to expand it.
router/index.js
0 → 100644
This diff is collapsed. Click to expand it.
router/join/index.js
0 → 100644
This diff is collapsed. Click to expand it.
router/login/index.js
0 → 100644
This diff is collapsed. Click to expand it.
router/logout/index.js
0 → 100644
This diff is collapsed. Click to expand it.
router/main/main.js
0 → 100644
This diff is collapsed. Click to expand it.
router/make/index.js
0 → 100644
This diff is collapsed. Click to expand it.
router/map/index.js
0 → 100644
This diff is collapsed. Click to expand it.
router/market/index.js
0 → 100644
This diff is collapsed. Click to expand it.
views/customer.ejs
0 → 100644
This diff is collapsed. Click to expand it.
views/email.ejs
0 → 100644
This diff is collapsed. Click to expand it.
views/gps.ejs
0 → 100644
This diff is collapsed. Click to expand it.
views/images/market.png
0 → 100644
27.8 KB
views/images/you.png
0 → 100644
49.1 KB
views/join/join.ejs
0 → 100644
This diff is collapsed. Click to expand it.
views/login/css/style.css
0 → 100644
This diff is collapsed. Click to expand it.
views/login/login.ejs
0 → 100644
This diff is collapsed. Click to expand it.
views/main/LICENSE.txt
0 → 100644
This diff is collapsed. Click to expand it.
views/main/README.txt
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/css/font-awesome.min.css
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/css/ie8.css
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/css/ie9.css
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/css/images/overlay1.png
0 → 100644
1.94 KB
views/main/assets/css/images/overlay2.png
0 → 100644
2.61 KB
views/main/assets/css/images/overlay3.svg
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/css/images/overlay4.svg
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/css/main.css
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/fonts/FontAwesome.otf
0 → 100644
No preview for this file type
No preview for this file type
This diff could not be displayed because it is too large.
No preview for this file type
No preview for this file type
No preview for this file type
views/main/assets/js/ie/PIE.htc
0 → 100644
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
views/main/assets/js/ie/html5shiv.js
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/js/ie/respond.min.js
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/js/jquery.min.js
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/js/jquery.scrolly.min.js
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/js/main.js
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/js/skel.min.js
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/js/util.js
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/sass/ie8.scss
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/sass/ie9.scss
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/sass/libs/_functions.scss
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/sass/libs/_mixins.scss
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/sass/libs/_skel.scss
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/sass/libs/_vars.scss
0 → 100644
This diff is collapsed. Click to expand it.
views/main/assets/sass/main.scss
0 → 100644
This diff is collapsed. Click to expand it.
views/main/images/ddolsoon.png
0 → 100644
39 KB
views/main/images/header.jpg
0 → 100644
98 KB
views/main/images/pic01.jpg
0 → 100644
9 KB
views/main/images/pic02.jpg
0 → 100644
4.62 KB
views/main/images/pic03.jpg
0 → 100644
5.18 KB
views/main/images/pic04.jpg
0 → 100644
4.74 KB
views/main/images/pic05.jpg
0 → 100644
1.82 KB
views/main/images/pic06.jpg
0 → 100644
9.6 KB
views/main/main.ejs
0 → 100644
This diff is collapsed. Click to expand it.
views/map.ejs
0 → 100644
This diff is collapsed. Click to expand it.
-
Please register or login to post a comment