Forum Discussion

asaddev's avatar
asaddev
New Contributor
3 years ago

Regarding swagger is not working in nodejs as per the swagger document.

Hi there,

I tried to setup swagger on nodejs as per the document par it is not working and present wrong data of swagger UI see the below attached screenshot. So just wanted to know how to setup swagger in nodejs so that all my apis display in one place. I tried lot of solutions on different different websites but same issue appeared. So kindly guide how to do that so that swagger is running properly.

Reference site that I tried below: 
https://swagger.io/docs/open-source-tools/swagger-codegen/#:~:text=The%20Swagger%20Codegen%20is%20an,can%20be%20found%20in%20GitHub.
https://levelup.gitconnected.com/how-to-add-swagger-ui-to-existing-node-js-and-express-js-project-2c8bad9364ce
https://medium.com/bb-tutorials-and-thoughts/how-to-add-swagger-to-nodejs-rest-api-7a542cfdc5e1
https://plainenglish.io/blog/how-to-implement-and-use-swagger-in-nodejs-d0b95e765245
https://dev.to/kabartolo/how-to-document-an-express-api-with-swagger-ui-and-jsdoc-50do
https://itnext.io/setting-up-swagger-in-a-node-js-application-d3c4d7aa56d4
https://github.com/Surnet/swagger-jsdoc/blob/master/README.md

Looking forward to hearing from you. Thanks!




Swagger.json:

{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "My User Project CRUD",
"description": "My User Project Application API",
"license": {
"name": "MIT",
}
},
"host": "localhost:3000",
"basePath": "/",
"tags": [
{
"name": "Users",
"description": "API for users in the system"
}
],
"schemes": ["http"],
"consumes": ["application/json"],
"produces": ["application/json"]
}

Server.js:

import swaggerUi from 'swagger-ui-express';
import swaggerDocument from './swagger.json';

app.use(
'/api-docs',
swaggerUi.serve,
swaggerUi.setup(swaggerDocument)
);

app.listen(port, () => {
console.log(`Server running at ${process.env.SERVER_URL}`);
});


 

6 Replies

  • It could be related to TestComplete browser extension installation. I suggest you uninstall TestComplete, reboot, and reinstall TestComplete.That should take care of any installation related problem.

    I also recommend to split browser start and site navigate to tow commands, that way you will have better debug to know if it is the browser startup or the page navigation.

    • dhundley's avatar
      dhundley
      Regular Contributor

      the uninstall/reboot/reinstall appears to have resolved the internal error in chrome. first and third test cases completed successfully. the second one had some a "dllhost.exe process crashed" error but that probably is not even related to testcomplete. if anyone is familiar with what might have caused it, feel free to share. thanks!

       

      • dhundley's avatar
        dhundley
        Regular Contributor

        update:

        after completing several test cases successfully the pipeline got stuck in the middle waiting for the chrome browser so i cancelled it and started it up again. The first two test cases were successful but the third failed again with the message about the internal error while running chrome. i'm thinking i might need to revert my testexecute to an earlier release and see if that solves it.