feat: Created a mini nodeJS server with NewMan for testing without PostMan GUI.

This will mimic a run in a CD/CI environment or docker container.
This commit is contained in:
Simon Priet
2021-09-08 14:01:19 +02:00
parent 5fbd7c88fa
commit e69a613a37
5610 changed files with 740417 additions and 3 deletions

37
node_modules/dbug/README.md generated vendored Normal file
View File

@@ -0,0 +1,37 @@
# dbug
[![Build Status](https://travis-ci.org/seanmonstar/dbug.png?branch=master)](https://travis-ci.org/seanmonstar/dbug)
[![NPM version](https://badge.fury.io/js/dbug.png)](http://badge.fury.io/js/dbug)
A drop-in replacement for [debug][], for slightly more utility.
```js
var dbug = require('dbug')('foo:bar');
dbug('just like debug'); // except goes to stdout, not stderr
dbug(new Error('also like debug'));
// additional methods
dbug.info('info');
dbug.warn('warning');
dbug.error('red alert');
```
Just like debug, `dbug` won't do anything unless the `DEBUG` env variable matches the `dbug` logger, but with slightly more lenient matching.
```
DEBUG=*
DEBUG=foo,quux
DEBUG=foo // also acts as foo:*
```
A user script wanting to dynamically enable or disable can do it a
couple ways:
```js
require('dbug').env = 'foo,quux'; // just like ENV var
var foo = require('dbug')('foo');
foo.enabled = true;
```
[debug]: https://npmjs.org/package/debug