
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@intelika/swagger-theme
Advanced tools
This is a theme for Swagger UI (JavaScript/TypeScript/NestJS) that provides a clean and modern look for your API documentation. It can also be used for other languages that swagger supports as well. See Other languages
Use the package manager of your choice to install the package:
npm
npm install --save @intelika/swagger-theme
pnpm
pnpm add @intelika/swagger-theme
yarn
yarn add @intelika/swagger-theme
This section provides information on how to use the Swagger theme package. It includes instructions, examples, and guidelines for integrating the theme into your project.
import { INestApplication } from '@nestjs/common';
import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
import { getThemeSync } from '@intelika/swagger-theme';
export function setupSwagger(app: INestApplication): void {
const options = new DocumentBuilder()
.setTitle('Hello World')
.setDescription('A sample API')
.setVersion('1.0.0')
.addServer('http://localhost:3000/api/v1')
.build();
const document = SwaggerModule.createDocument(app, options);
SwaggerModule.setup('api-docs', app, document, {
customCss: getThemeSync().toString() // In custom css we will add the theme
});
}
function bootstrap() {
const app = await NestFactory.create(AppModule);
setupSwagger(app);
await app.listen(3000);
}
const swaggerJsdoc = require('swagger-jsdoc');
const swaggerUi = require('swagger-ui-express');
const express = require('express');
const { getThemeSync } = require('@intelika/swagger-theme');
const options = {
swaggerDefinition: {
openapi: '3.0.0',
info: {
title: 'Hello World',
version: '1.0.0',
description: 'A sample API'
},
servers: [
{
url: 'http://localhost:3000/api/v1'
}
]
},
apis: ['./routes/*.js']
};
const specs = swaggerJsdoc(options);
const app = express();
app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(specs, {
customCss: getThemeSync().toString() // In custom css we will add the theme
}));
app.listen(3000);
import swaggerJsdoc from 'swagger-jsdoc';
import swaggerUi from 'swagger-ui-express';
import express from 'express';
import { getThemeSync } from '@intelika/swagger-theme';
const options = {
swaggerDefinition: {
openapi: '3.0.0',
info: {
title: 'Hello World',
version: '1.0.0',
description: 'A sample API'
},
servers: [
{
url: 'http://localhost:3000/api/v1'
}
]
},
apis: ['./routes/*.js']
};
const specs = swaggerJsdoc(options);
const app = express();
app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(specs, {
customCss: getThemeSync().toString() // In custom css we will add the theme
}));
app.listen(3000);
fetch the css file from the link above and add it to your swagger ui configuration.
https://raw.githubusercontent.com/intelika-ai/intelika-swagger-theme/main/assets/selorex-swagger.css
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A theme for swagger-ui ( OpenAPI ) for JavaScript/TypeScript
We found that @intelika/swagger-theme demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.