dalisoft/nanoexpress

View on GitHub

Showing 44 of 50 total issues

Avoid deeply nested control flow statements.
Open

                if (config._errorHandler) {
                  return config._errorHandler(middleware.error, req, res);
                }
Severity: Major
Found in src/middlewares/http.js - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

              if (!value.schema) {
                schema[typeName][httpCode].content[contentType] = { schema: value };
              }
    Severity: Major
    Found in src/helpers/prepare-swagger-docs.js - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                  if (!validationStringify) {
                    validationStringify = fastJson(validationSchema);
                  }
      Severity: Major
      Found in src/helpers/prepare-validation.js - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                        if (config._errorHandler) {
                          return config._errorHandler(error, req, res);
                        }
        Severity: Major
        Found in src/middlewares/http.js - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                      for (const code in _schema) {
                        newSchema[code] = fastJson(_schema[code]);
                      }
          Severity: Major
          Found in src/helpers/prepare-validation.js - About 45 mins to fix

            Function writeHeaders has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

            export default function writeHeaders(headers) {
              for (const header in headers) {
                const value = headers[header];
                if (value) {
                  if (value.splice) {
            Severity: Minor
            Found in src/proto/http/header-chunks/write-headers.js - About 35 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function setHeaders has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

            export default function setHeaders(headers) {
              for (const header in headers) {
                if (this._headers) {
                  const currentHeader = this._headers[header];
                  if (currentHeader !== undefined || currentHeader !== null) {
            Severity: Minor
            Found in src/proto/http/header-chunks/set-headers.js - About 35 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Avoid too many return statements within this function.
            Open

                  return fn(request, response, config);
            Severity: Major
            Found in src/handler/http.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                            return;
              Severity: Major
              Found in src/middlewares/http.js - About 30 mins to fix

                Avoid too many return statements within this function.
                Open

                        return res.send(errors);
                Severity: Major
                Found in src/handler/http.js - About 30 mins to fix

                  Avoid too many return statements within this function.
                  Open

                      return { simple: false, reason: 'error' };
                  Severity: Major
                  Found in src/helpers/is-simple-handler.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                                    return res.end(
                                      `{"middleware_type":"${fn.type}",error":"${middleware.error.message}"}`
                                    );
                    Severity: Major
                    Found in src/middlewares/http.js - About 30 mins to fix

                      Avoid too many return statements within this function.
                      Open

                                return res;
                      Severity: Major
                      Found in src/middlewares/http.js - About 30 mins to fix

                        Avoid too many return statements within this function.
                        Open

                                return res.send(validationHandler);
                        Severity: Major
                        Found in src/handler/http.js - About 30 mins to fix

                          Avoid too many return statements within this function.
                          Open

                                  return res.json(result);
                          Severity: Major
                          Found in src/handler/http.js - About 30 mins to fix

                            Avoid too many return statements within this function.
                            Open

                                  return res.end(
                                    `{"error":"${
                                      result && result.error
                                        ? result.message
                                        : 'The route you visited does not returned response'
                            Severity: Major
                            Found in src/handler/http.js - About 30 mins to fix

                              Avoid too many return statements within this function.
                              Open

                                                return config._errorHandler(middleware.error, req, res);
                              Severity: Major
                              Found in src/middlewares/http.js - About 30 mins to fix

                                Avoid too many return statements within this function.
                                Open

                                          return res;
                                Severity: Major
                                Found in src/middlewares/http.js - About 30 mins to fix

                                  Avoid too many return statements within this function.
                                  Open

                                        return res;
                                  Severity: Major
                                  Found in src/handler/http.js - About 30 mins to fix

                                    Avoid too many return statements within this function.
                                    Open

                                            return config._errorHandler(
                                              result && result.error
                                                ? result
                                                : { message: 'The route you visited does not returned response' },
                                              req,
                                    Severity: Major
                                    Found in src/handler/http.js - About 30 mins to fix
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language