Initial commit

This commit is contained in:
abrendan
2023-11-30 14:15:19 +00:00
commit e4599df811
5457 changed files with 500139 additions and 0 deletions

33
node_modules/express-data-parser/README.md generated vendored Normal file
View File

@@ -0,0 +1,33 @@
# express-data-parser
## Installation
To install it with NPM:
```bash
npm install express-data-parser --save
```
## Configuration
It uses formidable in the back-end, so the configuration options are the same:
[Configuration options for Formidable](https://github.com/felixge/node-formidable#api)
Just pass them as the parameter:
```js
var dataParser = require('express-data-parser');
// ...
app.use(dataParser({
encoding: 'utf-8',
uploadDir = "/my/dir"
// ...
}));
```
## Author & License
[Francisco Presencia Fandos](http://francisco.io/) under the MIT License.