Our company is using swagger to document their API\'s, currently a couple of developers are using the online swagger editor on their PC\'s.
I want to move this piec
npm
is not required, you can download the compiled files from the Swagger Editor repository:
index.html
dist\*
and open index.html
locally (from the file system) or put the files onto a web server in your network.
With one command with npm/npx:
npx swagger-editor-binary
In short answer is https://swagger.io/docs/swagger-tools/#swagger-editor
git clone https://github.com/swagger-api/swagger-editor.git
cd swagger-editor
npm install
npm run build
npm start
And it will works in your Intranet OK.
PS. You don't need to build the source code unless you want to contribute as written in the 'Contribute' section of the official document.