Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@splunk-eap/react-scs-nav
Advanced tools
Navigation Bar for Apps on Splunk Cloud Services platform.
npm install @splunk/react-scs-nav@3.1.0
Or
yarn add @splunk/react-scs-nav@3.1.0
import Nav, {
MenuItem,
AppNavItem,
AppNavDropdown,
AboutIcon,
FeedbackIcon,
HelpIcon,
SettingsIcon,
} from '@splunk/react-scs-nav/';
import NavProvider from '@splunk/react-scs-nav/NavProvider';
import NavMockProvider from '@splunk/react-scs-nav/NavMockProvider';
import themes from '@splunk/react-scs-nav/themes';
Place your logo file in the root of your application. It should be 48 pixels tall with no margins or padding.
/logo-dark-48.png
The app switcher will pass in the tenant via a query string parameter. This allows you to determine your own url schema. Additional parameters may be added in the future, such as locale.
/r/switchApp?tenantName=demotenant
Redirecting with react-router
and IE 11 support:
import queryString from 'query-string';
...
<Route
path="/r/switchApp"
render={props => (
<Redirect
to={`/${queryString.parse(props.location.search).tenantName}/`}
/>
)}
/>
Redirecting with react-router
and no IE 11 support:
<Route
path="/r/switchApp"
render={props => (
<Redirect
to={`/${new URLSearchParams(props.location.search).get('tenantName')}/`}
/>
)}
/>
FAQs
Navigation Bar for Apps on Splunk Cloud Services platform.
The npm package @splunk-eap/react-scs-nav receives a total of 3 weekly downloads. As such, @splunk-eap/react-scs-nav popularity was classified as not popular.
We found that @splunk-eap/react-scs-nav demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.