
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@loopback/rest-explorer
Advanced tools
This module contains a component adding a self-hosted REST API Explorer to LoopBack applications.
npm install --save @loopback/rest-explorer
The component should be loaded in the constructor of your custom Application
class. Applications scaffolded by recent versions of our lb4 CLI tool have the
self-hosted REST API Explorer pre-configured out of the box.
Start by importing the component class:
import {RestExplorerComponent} from '@loopback/rest-explorer';
In the constructor, add the component to your application:
this.component(RestExplorerComponent);
By default, API Explorer is mounted at /explorer. This path can be customized
via RestExplorer configuration as follows:
this.bind(RestExplorerBindings.CONFIG).to({
path: '/openapi/ui',
});
NOTE: The Explorer UI's visual style is not customizable yet. Our recommended solution is to create a fork of this module, make any style changes in the fork and publish the modified module under a different name. The GitHub issue #2023 is requesting a configuration option for customizing the visual style, please up-vote the issue and/or join the discussion if you are interested in this feature.
Run npm test from the root folder.
See all contributors.
MIT
FAQs
LoopBack's API Explorer
The npm package @loopback/rest-explorer receives a total of 16,807 weekly downloads. As such, @loopback/rest-explorer popularity was classified as popular.
We found that @loopback/rest-explorer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.